:root {
	--color-white: #ffffff;
	--color-gray: #f4f5f5;
	--color-gray-hover: #d0d0d0;
	--color-accent: #0d635a;
	--color-accent-hover: #1f9c60;
	--color-primary: #181818;
	--color-blue: #377DF4;
	--color-yellow: #DFB956;
	--color-green: #88BA69;
	--color-turquoise: #8CBCBF;
	--color-brown: #C0AC9C;
	--color-red: #BE6262;
	--bg-color: #F7F7F7;
	--color-light-gray:#E5E5E5;
	--color-gray-caption:#AFAFAF;

	--padding-block: 40px;

	--box-radius: 16px;

	--transition-default: 0.2s;

}

@media screen and (max-width: 767px) {
	:root {
		--padding-block: 24px;
	}
}



*,
*::before,
*::after {
	box-sizing: inherit;
}

::-webkit-input-placeholder {
	color: var(--color-primary);
}

::-moz-placeholder {
	color: var(--color-primary);
}

:-ms-input-placeholder {
	color: var(--color-primary);
}

:-moz-placeholder {
	color: var(--color-primary);
}



hr {
	height: 1px;
	margin-top: 24px;
	margin-bottom: 16px;
	background-color: #dddddd;
	border: none;
}



a {
	color: var(--color-accent);
	text-decoration: underline;
	overflow-wrap: anywhere;
}

a[href^='mailto:'],
a[href^='tel:'] {
	text-decoration: none;
}



table {
	width: 100%;
	table-layout: fixed;
	/*border: 1px solid #888888;*/
	/*border-collapse: collapse;*/
	border-collapse: initial;
}

thead {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	text-align: left;
	color: var(--color-primary);
	/*background-color: var(--color-accent);*/
	/*border-bottom: 1px solid #dddddd;*/
}




th,
td {
	width: 100%;
	padding: 5px 5px;
}

th {
	/*border-right: 1px solid var(--color-white);*/
}

th[colspan] {
	border-bottom: 1px solid var(--color-white);
}

th:last-child {
	border-right: none;
}

td {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	text-align: left;
	color: var(--color-primary);
	vertical-align: middle;
	border-top: 1px solid var(--color-light-gray);
	/*border-right: 1px solid #dddddd;*/
}

td:last-child {
	border-right: none;
}

@media screen and (max-width: 767px) {
	table {
		width: 100%;
	}
}





ul:not([class]) {
	margin: 24px 0;
	padding: 0;
	list-style: none;
}

ul:not([class]):last-child {
	margin-bottom: 0;
}

ul:not([class]) li {
	position: relative;
	margin-bottom: 16px;
	padding-left: 16px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	color: var(--color-primary);
}

ul:not([class]) li:last-child {
	margin-bottom: 0;
}

ul:not([class]) li::before {
	/*content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 8px;
	height: 8px;
	background-color: var(--color-accent);
	border-radius: 50%;*/
}

.pagination li {
    display: inline;
    padding: 2px 5px;
    text-align: left;
    margin: 0 2px;
    background: none;
}