@font-face {
	font-family: "Inter";
	src: url("../FONTS/Inter-ExtraLight.ttf") format("truetype");
	font-style: normal;
	font-weight: 200;
}

@font-face {
	font-family: "Inter";
	src: url("../FONTS/Inter-Light.ttf") format("truetype");
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: "Inter";
	src: url("../FONTS/Inter-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Inter";
	src: url("../FONTS/Inter-Medium.ttf") format("truetype");
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: "Inter";
	src: url("../FONTS/Inter-SemiBold.ttf") format("truetype");
	font-style: normal;
	font-weight: 600;
}

@font-face {
	font-family: "Inter";
	src: url("../FONTS/Inter-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "Inter";
	src: url("../FONTS/Inter-ExtraBold.ttf") format("truetype");
	font-style: normal;
	font-weight: 800;
}

body, p, h1, h2, h3, h4, h5, b, input, select, ul, li, textarea {
	font-family: "Inter" !important;
}

body, p, b, input, select, ul, li, textarea{
	font-size: 14px;
}

.hidden{
	display: none!important;
}

#app {
	display: flex;
	width: 100%;
	margin: auto;
	margin-top: 43px;
}

.menu {
	width: 300px;
	padding-right: 10px;
	border-right: 1px solid var(--border_color);
	min-height: calc(100vh - 94px);
}

.content_container {
	width: calc(100% - 600px);
	padding: 0 20px;
	margin-top: 25px;
}

.menu ul {
	list-style-type: none;
	padding-left: 15px;
	display: none;
}

.menu>ul {
	position: fixed;
	width: 290px;
	margin-top: 20px;
	padding-left: 10px;
	display: block;
}

.menu li.active ul {
	display: block;
}

.menu li.target>div {
	background: var(--active_menu);
}

.container_for_menu {
	display: flex;
	justify-content: space-between;
	padding: 5px 15px;
	border-radius: 6px;
	cursor: pointer;
	background: #fff;
	transition: 150ms;
}

.container_for_menu a {
	text-decoration: none;
	color: var(--primary_text);
	display: block;
	width: 100%;
}

.first_header {
	display: flex;
	list-style: none;
	border: none;
	justify-content: space-between;
	align-items: center;
	padding: 6px;
	padding-top: 2px;
	margin: 0;
	border-bottom: 1px solid var(--border_color);
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0;
	height: 43px;
	user-select: none;
	z-index: 1000;
	background: #fff;
}

.first_header > div {
	margin: 0 10px;
}

.first_header_left{
	margin-top: 3px !important;
	font-size: 13px;
}

span.header_dark {
	color: var(--bs-body-color);
	font-weight: 500;
}

.first_header span.delimeter {
	color: var(--secondary_text);
	
}

.first_header span:nth-child(2){
	color: var(--bs-body-color);
}

span.header_light {
	color: var(--secondary_text);
}

.container_for_menu:hover {
	background: #F5F5F5;
}

.open_variants {
	width: 18px;
	height: 18px;
	transition: 300ms;
	transform: rotate(0deg);
	color: var(--secondary_text);
	margin-top: 1px;
}

li.active > div > .open_variants{
	transform: rotate(90deg);
}

footer {
	border-top: 1px solid var(--border_color);
}

.footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--third_text);
	max-width: calc(100% - 600px);
	height: 50px;
	min-height: 50px;
	margin: auto;
	font-size: 12px!important;
}

footer a, footer a:hover, footer a:focus, .breadcrumbs a, .breadcrumbs a:hover, .breadcrumbs a:focus{
	text-decoration: none;
	color: var(--primary_text);
}

footer a.pim_link, footer a.pim_link:hover, footer a.pim_link:focus {
	color: var(--third_text);
}

footer svg {
	margin-top: -4px;
	margin-right: -5px;
}

.info_footer {
	display: flex;
	text-align: center;
}

.info_footer div{
	width: 1px;
	border-left: 1px solid;
	margin: 0px 10px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 30px;
}

.breadcrumbs svg {
	width: 12px;
	height: 12px;
	margin: 0 6px;
	color: var(--secondary_text);
}

.pagination_child {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	padding: 10px 15px;
	border-bottom: 1px solid var(--border_color);
	background: #fff;
	transition: 150ms;
}

.pagination_child span{
	color: var(--primary_text);
}

.pagination_child svg {
	margin-top: 2px;
	color: var(--secondary_text);
}

.pagination_childs {
	max-width: 350px;
	margin: 20px auto;
	border: 1px solid var(--border_color);
	border-radius: 6px;
	overflow: hidden;
	margin-top: 35px;
}

.pagination_child:last-child {
	border-bottom: none;
}

.pagination_child:hover {
	background: var(--primary_hover);
}

.pagination_child:hover span{
	color: var(--primary_text);
}

.pagination_child:hover svg{
	color: var(--secondary_text);
}

.pagination {
	justify-content: center;
	margin: 20px 0;
	margin-top: 35px;
}

.pagination_href {
	color: var(--primary_text);
	padding: 10px 15px;
	border-radius: 6px;
	border: 1px solid var(--border_color);
	text-decoration: none;
	background: #fff;
	transition: 150ms;
	min-width: 180px;
	text-align: center;
}

.pagination_href:not(:last-child) {
	border-right: none;
	border-radius: 6px 0px 0px 6px;
	
}

.pagination_href.prev{
	padding-left: 10px;
}

.pagination_href:not(:first-child) {
	border-radius: 0px 6px 6px 0;
	padding-right: 10px;
}

.pagination_href.next{
	padding-right: 10px;
}

.pagination_href svg {
	width: 15px;
	margin: 0 5px;
	color: var(--secondary_text);
	margin-top: -2px;
}

.pagination_href:hover {
	color: var(--primary_text);
	background: var(--primary_hover);
}

.hamburger-menu svg, .hamburger-menu img {
	width: 25px;
	height: 25px;
	margin-bottom: -2px;
	color: var(--bs-body-color);
	display: none;
}

.hamburger-menu .active svg {
	display: block;
}

.hamburger-menu {
	margin: 0!important;
	left: 3px;
	padding: 10px;
	cursor: pointer;
	position: absolute;
	display: none;
}

.bg_menu{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--bs-body-color);
	opacity: 0.4;
	display: none;
}

.main_content>h3:first-child {
	margin-bottom: 30px;
}

.main_content>h5 {
	margin-top: 25px;
}

.main_content a {
	color: var(--primary_text);
	text-decoration: none;
}

.main_content a:hover {
	color: var(--primary_text);
}

.main_content>ul>li>blockquote {
	display: none;
	background: var(--background_opened_quote);
	margin: 10px;
	padding: 10px;
	border-radius: 6px;
}

.main_content>ul>li>blockquote.active {
	display: block;
}

.expand_list {
	list-style-type: none;
	padding: 0;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid var(--border_color);
	margin-top: 1rem;
}

.expand_list>li>div {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	background: #fff;
	border-radius: 0;
	transition: 150ms;
}

.expand_list>li {
	border-bottom: 1px solid var(--border_color);
}

.expand_list>li:last-child {
	border-bottom: none;
}

.expand_list>li>div>svg {
	color: var(--secondary_text);
	transform: rotate(0deg);
	transition: 300ms;
}

.expand_list>li>div:hover {
	background: var(--primary_hover);
}

.expand_list>li.active>div>svg {
	transform: rotate(90deg);
}

.expand_list>li.active>blockquote {
	display: block;
}

.main_content>blockquote {
	background: var(--primary_hover);
	border-radius: 6px;
	padding: 10px 15px;
	padding-left: 40px;
	position: relative;
}

.main_content>blockquote>p:last-child {
	margin-bottom: 0px;
}

.main_content>blockquote:before {
	position: absolute;
	width: 24px;
	height: 24px;
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' class='load_svg replaced-svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23808080' d='M12 21c5.584 0 9-3.416 9-9s-3.416-9-9-9-9 3.416-9 9 3.416 9 9 9m1-13a1 1 0 1 1-2 0 1 1 0 0 1 2 0m-2 4a1 1 0 1 1 2 0v4a1 1 0 1 1-2 0z'%3E%3C/path%3E%3C/svg%3E");
	left: 9px;
	top: 10px;
}

.main_content li::marker {
	color: var(--third_text);
}

.main_content img {
	box-shadow: 0 4px 9px -2px rgb(0 0 0 / 12%), 0 0 2px rgb(0 0 0 / 12%);
	border-radius: 6px;
	margin: auto;
	max-width: min(600px, 100%);
	display: block;
}

.expand_list blockquote img {
	margin-top: 15px;
}

.auth_oz_svg {
	height: 40px;
	padding-top: 8px;
	display: flex;
	align-items: center;
}

.logo_x {
	width: 16px;
	height: 16px;
	margin-left: -3px;
	margin-top: 3px;
}

.logo_oz {
	margin-left: 3px;
	margin-bottom: -4px;
}

.header_menu {
	background: #fff;
	height: 45px;
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
	padding-left: 15px;
	display: flex;
}

@media screen and (max-width: 1350px){
	.content_container{
		width: calc(100% - 300px);
	}
	.footer{
		max-width: calc(100% - 40px);
	}
}

@media screen and (max-width: 900px){
	.menu {
		position: fixed;
		background: #fff;
		min-height: calc(100vh - 43px);
		transition: 200ms;
		left: -300px;
		z-index: 1;
	}
	.content_container {
		width: 100%;
		min-height: calc(100vh - 119px);
	}
	.hamburger-menu {
		display: block;
	}
	.header_menu{
		justify-content: center;
	}
	.first_header {
		justify-content: center;
	}
	.bg_menu.active{
		display: block;
	}
	.menu.active{
		left: 0;
	}	
}

@media screen and (max-width:730px){
	.hamburger-menu{
		position: initial;
	}
	.first_header{
		justify-content: space-between;
	}
	.footer{
		height: auto;
		flex-direction: column;
	}
	.footer>span{
		margin: 8px 0;
	}
	.footer .info_footer{
		margin-bottom: 8px;
	}	
}

@media screen and (max-width:620px){
	.first_header span:nth-child(4), .first_header span:nth-child(5){
		display: none;
	}
}

@media screen and (max-width:520px){
	.first_header span:nth-child(2), .first_header span:nth-child(3){
		display: none;
	}

	.hamburger-menu{
		position: absolute;
	}

	.first_header {
		justify-content: center;
	}
}

@media screen and (max-width:440px){
	.footer>span{
		margin-bottom: 0;
	}
	.info_footer{
		flex-direction: column;
	}
	.pagination{
		flex-direction: column;
	}
	.pagination_href:not(:last-child){
		border-radius: 6px 6px 0 0;
		border-right: 1px solid var(--border_color);
		border-bottom: none;
	}
	.pagination_href:not(:first-child){
		border-radius: 0 0 6px 6px;
	}
}