/*------------------------------------------------------------*/
/* *** ТАБЛИЦЫ В КОНТЕНТ */
/*------------------------------------------------------------*/
table {
    width: 90%;
    color: #39454c;
    font-size: 1.2rem;
    margin: 1em auto 2em;
    text-align: center;
    font-family: 'Roboto',Arial,sans-serif;
    font-weight: 100;
    max-width: 960px;
}
table.mobile,
.no_courses {
    display: none;
}
.no_courses {
    color: rgb(41, 41, 41);
    font-size: .9em;
    width: 90%;
    font-weight: 100;
    color: #222;
    text-align: center;
    margin: 1em auto;
}
table caption {
    text-align: left;
    font-size: 1.4rem;
    margin: 1.5em 0 .5em;
}
table thead th {
    background-color: #2572c4;
}
table thead tr th {
    font-size: .85em;
    font-weight: 400;
    color: #FFF;
}
table tfoot td {
    font-size: .85em;
    font-weight: 400;
    background-color: #212122;
}
table tr td:first-child,
table tr th:first-child {
    text-align: left;
}
table tr td,
table tr th {
    color: #39454c;
}
table tbody tr td:not(:first-child) {

}
table tr,
table td,
table th {
    border: none;
}
table td,
table th {
    padding: 1em 1rem;
}
table tr {
    background-color: inherit;
}
table tr:nth-child(2n) {
    background-color: rgba(143,148,150,0.1);
}
table tbody tr td {
    font-size: .8em;
    color: #222;
}
table tbody tr td.yes,
table tbody tr td.no {
    font-size: 0;
    background-position: 50%;
    background-repeat: no-repeat;
}
table tbody tr td.yes {
    -webkit-background-size: 1.25rem 1.25rem;
         -o-background-size: 1.25rem;
            background-size: 1.25rem;
    color: rgba(30, 176, 205, .25);
    background-image: url(../themes/bconsult/assets/css/images/compare-yes.svg);
}
table tbody tr td.no {
    -webkit-background-size: 1rem 1rem;
         -o-background-size: 1rem;
            background-size: 1rem;
    background-color: rgba(143, 148, 150, .1);
    color: rgba(143, 148, 150, .1);
    background-image: url(../themes/bconsult/assets/css/images/compare-no.svg);
}

.--t-red {
    color: #DC143C;
    font-weight: 700;
}

@media screen and (max-width: 960px) {
    table {
        display: none; 
    }
    table.both {
        display: block;
    }
    table.mobile,
    .no_courses {
        display: block;
        margin: 1em auto 2em;
    }
}
@media screen and (max-width: 529px) {
}
@media screen and (max-width: 429px) {
}
@media screen and (max-width: 389px) {
    table td,
    table th {
        padding: .5em .25rem;
    }
}
@media screen and (max-width: 319px) {
    .shedule {
        padding: 0 10px 0 55px;
    }
    table {
        font-size: .9rem;
    }
}
@media screen and (max-width: 279px) {

}
/*------------------------------------------------------------*/
/* *** КОНЕЦ ТАБЛИЦЫ В КОНТЕНТ */
/*------------------------------------------------------------*/
/*------------------------------------------------------------*/
/* *** COOKIE WINDOW *** */
/*------------------------------------------------------------*/
/* --- БАЗОВЫЕ СТИЛИ --- */
.cookie-banner {
	position: fixed;
	z-index: 9999;

	/* Новые цвета */
	background-color: #ffffff;
	color: #333333;

	/* Тень для отделения белого окна от фона сайта */
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);

	padding: 20px;
	box-sizing: border-box;
	display: flex;

	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
}

/* Контейнер для Иконки и Текста */
.cookie-container {
	display: flex;
	align-items: center;
	gap: 15px;
}

.cookie-text {
	font-size: 14px;
	line-height: 1.4;
	font-family: Arial, sans-serif;
}

/* Стили для ссылок внутри текста */
.cookie-text a {
	color: #007bff; /* Цвет такой же, как у кнопки, для единого стиля */
	text-decoration: underline; /* Подчеркивание, чтобы сразу было понятно, что это ссылка */
	transition: color 0.2s ease;
}

.cookie-text a:hover {
	color: #0056b3; /* Темнее при наведении */
	text-decoration: none; /* Убираем подчеркивание при наведении */
}

.cookie-btn {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	white-space: nowrap;
	transition: background-color 0.2s;
	text-align: center;
}

/* Иконка */
.cookie-icon {
	display: block;
	flex-shrink: 0;
	line-height: 0; /* Убирает лишние отступы снизу */
}

.cookie-icon svg {
	width: 40px; /* Фиксированная ширина */
	height: 40px; /* Фиксированная высота */
	display: block;
}

/* Цвет задан прямо в HTML атрибуте fill, но на случай конфликтов: */
.cookie-icon path {
	fill: #1c3361;
}

/* Адаптив для иконки (без изменений, напоминание) */
@media (max-width: 767px) {
	.cookie-icon {
		display: none;
	}
}

.cookie-btn:hover {
	background-color: #0056b3;
}

/* --- АДАПТИВНОСТЬ --- */

/* 1. Мобильные и Планшеты (до 1023px) */
@media (max-width: 1023px) {
	.cookie-banner {
		left: 0;
		bottom: 0;
		width: 100%;

		flex-direction: column;
		align-items: center;
		gap: 20px;

		transform: translateY(20px);

		/* На мобильных тень лучше пустить вверх */
		box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	}

	.cookie-banner.show {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.cookie-container {
		width: 100%;
		justify-content: center; /* Центрируем иконку+текст */
		text-align: left;
	}

	.cookie-btn {
		width: 100%;
		max-width: 260px;
	}
}

/* Скрываем иконку на смартфонах */
@media (max-width: 767px) {
	.cookie-icon {
		display: none;
	}
	.cookie-container {
		text-align: center;
	}
}

/* Показываем иконку на планшетах */
@media (min-width: 768px) and (max-width: 1023px) {
	.cookie-icon {
		display: block;
		flex-shrink: 0;
	}
}

/* 2. Большие экраны (от 1024px) */
@media (min-width: 1024px) {
	.cookie-banner {
		left: 50%;
		bottom: 30px;
		width: 60%;
		border-radius: 8px;

		flex-direction: row;
		align-items: center;
		justify-content: space-between;

		transform: translate(-50%, 20px);
	}

	.cookie-banner.show {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
	}

	.cookie-icon {
		display: block;
		flex-shrink: 0;
	}

	.cookie-btn {
		width: auto;
		margin-left: 30px;
	}
}
/*------------------------------------------------------------*/
/* *** КОНЕЦ COOKIE WINDOW *** */
/*------------------------------------------------------------*/
