.container{
	max-width:1200px;
	margin:0 auto;
}
body{
	background: #EEF5F0;	
}
:root {
  --font-family: Roboto;
}
.g-text{color:#167D4B!important}
.r-text{color:#FA0D0D!important}
.o-text{color:#FF9900!important}
.g-block,
.r-block,
.o-block{
	border-radius: 4px;
    padding:16px;
    gap: 12px;
	display:flex;
    justify-content: flex-start;
	align-items: center;
}


.gl-border{
	border-left: 6px solid #167D4B;	
	padding-left:18px;
}
.rl-border{
	border-left: 6px solid #FA0D0D;	
	padding-left:18px;
}
.ol-border{
	border-left: 6px solid #FF9900;	
	padding-left:18px;
}
.title-h1{
	color: #167D4B;
    font-family: var(--font-family);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	margin-bottom:40px;
	margin-top: 0;
}
.title-h3{
	font-family:var(--font-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal; 
}
.r-title{
	color: #167d4b;
    font-family: var(--font-family);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	margin-bottom: 16px;
	margin-top:50px;
}
.r-title.big {
	/*font-size: 36px;*/
}
.r-title.big-title {
	font-size: 36px;
}
.info-block{
	display:flex;
	align-items: flex-start;
	gap: 17px;	
}
.mob-head img {
	max-width:300px;
	margin-bottom: -2px;	
}
.side-menu{
	width:30%;
	position:sticky;
	top:8px;
}
.side-links{	  
	width:100%;	
	overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}
.side-links-inner{
	display: flex;
    flex-direction: column;
	gap: 8px;
}
.side-links img{
	min-width:24px;
	min-height:24px;
}
.side-links.open {
  overflow-y: auto; 
}
.side-links a{
	display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: #167d4b;  
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 4px;
	font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 600; 
    line-height: 24px;
	transition: all 0.2s ease;

}
.language-switcher a {
	
}
.side-links a.active, .side-links a:hover, .language-switcher a.active_lang {
	background: #167d4b;
	transition: all 0.2s ease;
	color:#fff;
}
.side-links a:before{
	content:'';
	display:block;
	width:24px;
	height:24px;
	min-width:24px;
	min-height:24px;
	background:url('/catalog/view/theme/default/image/tmp_icon.svg');
	background-size:100%;
	background-repeat:no-repeat;
}
.side-links a.first-elem:before {
	content: '';
	display: none;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	background: url(/catalog/view/theme/default/image/tmp_icon.svg);
	background-size: 100%;
	background-repeat: no-repeat;
}
.side-links a img{
    transition: all 0.2s ease;
}
.side-links a.active:before, .side-links a:hover:before{
    filter: brightness(0) invert(1);
    transition: all 0.2s ease;
}
.language-switcher {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 10px auto; 
} 

.language-switcher a {
	padding: 5px 12px;
	border: 1px solid #167d4b;
} 

.language-switcher a:before {
	display: none;
} 

.content-block {
	padding:40px;
	width:70%;
	background:#fff;
	box-sizing: border-box;
}
.text-block svg{
   min-width:24px;
   min-height:24px;
}
.text-block{
	color: #1F2530;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.32px;		
	margin-bottom: 16px;
}

.g-block{background: #ADE5CA;margin-bottom:16px;}
.r-block{background: #FFBFBF;margin-bottom:16px;}
.o-block{background: #FFE5BF;margin-bottom:16px;}

.text-block img {
	max-width:100%;
}
.text-block img.mini-blog-image {
	max-width:150px; 
}

.demo-image	{
	display: flex;
	justify-content: center;
	margin: 15px 0 20px 0;
}

.text-block p{
	margin-bottom: 10px;
	margin-top:0; 
	text-align: justify;
}
.text-block ol{
	padding-left: 18px;
}
.text-block a{
	color: #167d4b;
}
.copy-block {
    position: relative;
    background: #e3e3e3;
    color: #383a42;
    padding: 0px 16px;
    border-radius: 8px;
    font-family:var(--font-family);
    margin-bottom:16px;
}
.copy-inner{
	overflow-x: auto
}
.copy-block pre{
	font-size: 13px;
	line-height: 21px;
	/* margin-bottom: 0; */
	overflow: hidden; 
}

.copy-block .copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 8px 16px;
    font-size: 12px;
    background: #167d4b;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
	color: #FFF;
    font-family:var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
	transition: all 0.2s ease;
}
.copy-btn:after{
	content:'';
	display:block;
	width:18px;
	height:18px;
	background:url('/catalog/view/theme/default/image/copy-icon.svg');
	background-size:100%;
	background-repeat:no-repeat;
}
.copy-block .copy-btn:hover {
    background: #29a569;
	transition: all 0.2s ease;
}
.menu-btn {
    width: 32px;
    cursor: pointer;
    top: 0px;
    z-index: 20;
    position: relative;
}

.menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 12px;
    display: block;
    transition: background-color 0.5s ease-in-out;
}

.menu-btn span::before,
.menu-btn span::after {
    content: "";
    width: 100%;
    background-color: #fff;
    display: block;
    transition: all 0.5s ease-in-out;
    border-radius: 12px;
    height: 3px;
}

.menu-btn span::before {
    transform: translateY(-9px);

}

.menu-btn span::after {
    transform: translateY(10px);
    margin-top: -4px;
}


.menu-btn.active span {
    background-color: transparent;
}

.menu-btn.active span::before {
    transform: rotateZ(45deg) translateY(0);
}

.menu-btn.active span::after {
    transform: rotateZ(-45deg) translateY(0);
}
.mob-head{
    display: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #167D4B;
    color: #fff;	
}
@media (min-width: 1201px) {
    .side-links {
       max-height: none !important;
       overflow: visible;
    }
    
    .menu-btn-btn {
       display: none;
    }
}
@media (max-width:1200px){
	.side-links-inner{
	   margin-top: 10px;
	   margin-bottom:35px;
	   padding: 0 10px 10px 10px;
	}
	.side-links a {
		padding: 7px 12px;		
	}
	.side-menu{
	   width: 100%;
       position: fixed;
       left: 0;
       background: #eef5f0;
       top: 0;
       z-index: 99;		
	}
	.side-links{
	   box-sizing: border-box;
	   position:relative;
	   width: 100%;
       background: #eef5f0;       
	}
	.mob-head{
	   display:flex;
	   position:relative;
	}
	.active.first-elem{
	   display:none;
	 }
    .info-block{
	    flex-direction:column;
	}
	.content-block{
	   width:100%;
	   padding:16px;
       margin-top: 56px;overflow: hidden;
	}
	.text-block li{
	   margin-bottom:3px;
	}
	.text-block li:last-child{
	   margin-bottom:0;
	}
	.title-h1{
	    font-size:35px;
	    margin-bottom: 25px;
		text-align: center;
		margin-top: 16px;
	}
	.r-title{
		font-size:20px;
	}
	.r-title.big-title {
	font-size: 27px;
}
}

@media (min-width: 1200px) {
  .blog-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-image:hover {
    transform: scale(1.02); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
  }
  
  .demo-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .demo-image img:hover {
    transform: scale(1.02); 
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); 
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain; 
  animation: fadeIn 0.3s ease; 
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}