html, 
body 
{
	user-select: none;
	margin: 0;
	padding: 0;
	overflow-x: hidden; /* Предотвратить горизонтальную прокрутку */
}

*, 
*::before, 
*::after 
{
	box-sizing: border-box;
}
/* основное сочетание цвета заливки и цвета шрифта */
body,
.knopkatoplogo,
.razdel,
.divpodmenu,
.knopkapodmenuok,
#commentModal,
.info-block-text
{
	background-color: #1e2023;
	color: white;
}
/* основной стиль текста */
body, 
.knopka-list-item, 
.knopkatoplogo,
.razdel,
.divzagolovokrazdela,
.knopkapodmenu,
.knopkapodmenuok,
.close,
#commentModal,
.info-block-text,
.info-knopka-text
{
	font-family: 'Montserrat', Tahoma, Verdana, Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height:1.3;
	letter-spacing: 0.04em;
	font-weight: 200;
}
/* стиль без переноса и что не входит, то не отображается - в основном для кнопок */
.knopka-list-item,
.knopkatoplogo,
.divzagolovokrazdela,
.divpodmenu,
.knopkapodmenu,
.knopkapodmenuok,
.close
{
	white-space: nowrap;
	overflow: hidden;
}
/* стили главного меню */
.site-content {
  max-width: 80vw;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-content__headline {
  font-weight: 200;
  color: #ffffff;
  font-size: calc(4vw + 20px);
}

.menu-icon {
  height: 30px;
  width: 30px;
  position: fixed;
  z-index: 3;
  left: 15px;
  top: 12px;
  cursor: pointer;
}
.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #ffffff;
  margin-bottom: 4px;
  transition: transform 0.2s ease, background-color 0.5s ease;
}
.menu-icon__line-left {
  width: 15px;
}
.menu-icon__line-right {
  width: 15px;
  float: right;
}

.nav {
  position: fixed;
  z-index: 1;
}
.nav:before, .nav:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(234, 234, 234, 0.2);
  z-index: -1;
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
  transform: translateX(0%) translateY(-100%);
}
.nav:after {
  background: white;
  transition-delay: 0s;
}
.nav:before {
  transition-delay: 0.1s;
}
.nav__content {
  position: fixed;
  top: 40%;
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: calc(4vw + 10px);
  font-weight: 200;
}
.nav__list {
  line-height:1.5;
  color: #1e2023;
}
.nav__list-item {
  position: relative;
  display: inline-block;
  transition-delay: 0.8s;
  opacity: 0;
  transform: translate(0%, 100%);
  transition: opacity 0.2s ease, transform 0.3s ease;
  margin-right: 25px;
}
.nav__list-item:before {
  content: "";
  position: absolute;
  background: #000000;
  width: 20px;
  height: 1px;
  top: 100%;
  transform: translate(0%, 0%);
  transition: all 0.3s ease;
  z-index: -1;
}
.nav__list-item:hover:before {
  width: 100%;
}

body.nav-active .menu-icon__line {
  background-color: #000;
  transform: translateX(0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  transform: translateX(1px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  transform: translateX(-2px) rotate(45deg);
}
body.nav-active .nav {
  visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
  transform: translateX(0%) translateY(0%);
}
body.nav-active .nav:after {
  transition-delay: 0.1s;
}
body.nav-active .nav:before {
  transition-delay: 0s;
}
body.nav-active .nav__list-item {
  opacity: 1;
  transform: translateX(0%);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
  transition-delay: 0.5s;
}
body.nav-active .nav__list-item:nth-child(1) {
  transition-delay: 0.6s;
}
body.nav-active .nav__list-item:nth-child(2) {
  transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(3) {
  transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(4) {
  transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(5) {
  transition-delay: 1.0s;
}
body.nav-active .nav__list-item:nth-child(6) {
  transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(7) {
  transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(8) {
  transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(9) {
  transition-delay: 1.4s;
}
body.nav-active .nav__list-item:nth-child(10) {
  transition-delay: 1.5s;
}
body.nav-active .nav__list-item:nth-child(11) {
  transition-delay: 1.6s;
}
body.nav-active .nav__list-item:nth-child(12) {
  transition-delay: 1.7s;
}
body.nav-active .nav__list-item:nth-child(13) {
  transition-delay: 1.8s;
}
body.nav-active .nav__list-item:nth-child(14) {
  transition-delay: 1.9s;
}
body.nav-active .nav__list-item:nth-child(15) {
  transition-delay: 2.0s;
}
body.nav-active .nav__list-item:nth-child(16) {
  transition-delay: 2.1s;
}
body.nav-active .nav__list-item:nth-child(17) {
  transition-delay: 2.2s;
}
body.nav-active .nav__list-item:nth-child(18) {
  transition-delay: 2.3s;
}
body.nav-active .nav__list-item:nth-child(19) {
  transition-delay: 2.4s;
}
body.nav-active .nav__list-item:nth-child(20) {
  transition-delay: 2.5s;
}
body.nav-active .nav__list-item:nth-child(21) {
  transition-delay: 2.6s;
}
/* стили кнопок главного меню */
	.knopka-list-item					{	
											background: white;
											color: #1e2023;
											border: 0;
											font-size: calc(2vw + 1px);
											text-align: center;
											text-decoration: none;
											display: inline-block;
											cursor: pointer;
										}
	.chatbody							{
											display: flex;
											flex-direction: column;
											height: 100vh;
											overflow: hidden;
										}
/* полоса прокрутки (скроллбар) */
	::-webkit-scrollbar 				{
											width: 0.4em; /* ширина для вертикального скролла */
											height: 0.3em; /* высота для горизонтального скролла */
											background-color: #F5F7F7/*#BCCACA/*#F5F7F7*/;
											border-radius: 0.3em;
										}
/* ползунок скроллбара */
	::-webkit-scrollbar-thumb 			{
											background-color: grey/*#DCDCDC/*#413262*/;
											border-radius: 0.5em;
											border-right: 0.1em solid #DCDCDC/*#BCCACA/*#F5F7F7*/;
											border-left: 0.1em solid #DCDCDC/*#BCCACA/*#F5F7F7*/;
										}
	::-webkit-scrollbar-thumb:hover 	{
											background-color: #AE3835;
										}
/* стили для области лого и кнопок переключения компьютерной и мобильной версии сайта */
	.divtoplinerows						{	
											display:flex;
											flex-direction:row;
											justify-content:space-between;
											margin-top: 0.5em;
											overflow: hidden;
										}
	.divtextleft						{
											text-align: left;	
										}
	.knopkatoplogo						{
											padding: 0em 0.7em;
											text-indent: 50px;
											font-size: 110%;
											text-decoration: none;
											border: 0;
											display: inline-block;
											cursor: pointer;
										}
	.divtextright						{
											text-align: right;
											padding: 0px 5px 0px 0px;
										}
	.knopkamobile						{
											border: 0;
											padding: 0.2em 1em 0.2em 0em;
											text-align: left;
											text-decoration: none;
											display: inline-block;
											background-color: #1e2023;
											font-size: 110%;
											overflow: hidden;
											cursor: pointer;
										}
/* стиль разделов*/
	.razdel								{
											position: relative;
											z-index: 2;
										}
/* заголовок раздела верхнего меню */
	.divzagolovokrazdela				{
											background-color: #1e2023;
											color: #50C878/*#0ECB81/*#01BC8D/*white/*#74C890/*#AE3835/*#323232/*#413262*/;
											padding: 0em 0.7em;
											text-indent: 50px;
											position: relative;
											z-index: 2;
											cursor: grab; /* Указатель для перетаскивания */

										}
/* стили верхнего подменю */
	.divpodmenu							{
											padding: 0em 0.2em;
											margin-top: 0.2em;
											text-indent: 50px;
											position: relative;
											z-index: 2;
											
										}
	.knopkapodmenu						{
											-webkit-transition-duration: 0.4s;transition-duration: 0.4s;
											background-color: #1e2023;
											color: grey;
											font-size: 90%;
											border: 0;
											border-radius: 0.5em 0em 0em 0em;
											padding: 0.2em 0.5em;
											text-align: center;
											text-decoration: none;
											display: inline-block;
										}
	.knopkapodmenu:hover				{	
											color: #F5F7F7;
											opacity: 0.8;
											cursor: pointer;
										}
	.knopkapodmenuok					{
											font-size: 90%;
											border: 0;
											border-radius: 0.5em 0em 0em 0em;
											padding: 0.2em 0.5em;
											text-align: center;
											text-decoration: none;
											display: inline-block;
										}
/*оформление меток для указания количества непрочитанных сообщений*/
	.inline								{
											display: inline-block;
										}
	.white-circle 						{
											min-width: 1em;
											background-color: white;
											border-radius: 50%;
											margin: 0em 0.1em 0em 0.1em;
											padding: 0.2em 0.1em 0.1em 0.1em;
											color: red;
											text-align: center;
											display: inline-block;
											font-size: 60%;
										}
/* оформление иконок моб.телефона и ноутбука для переключения версий моб/комп */
.icon-container {
    display: flex;
    align-items: center;
	border: 1px solid grey;
}
.phone-icon {
    width: 12.5px; /* Ширина иконки */
    height: 20px; /* Высота иконки */
    background-color: #318CE7; /* Цвет иконки */
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 70% 0%, 70% 10%, 30% 10%, 30% 0%); /* Форма иконки */
    position: relative;
}
.phone-icon::before {
    content: '';
    position: absolute;
    bottom: 5px; /* Положение кнопки */
    left: 50%;
    transform: translateX(-50%);
    width: 6px; /* Ширина кнопки */
    height: 1.25px; /* Высота кнопки */
    background-color: white; /* Цвет кнопки */
    border-radius: 0.75px; /* Закругление углов кнопки */
}
.laptop-icon {
    position: relative;
    width: 30px;
    height: 20px;
}

.screen {
    width: 100%;
    height: 14px;
    background-color: blue;
	border: 1px solid grey;
}
.base {
    width: 100%;
    height: 6px;
    background-color: grey;
    position: relative;
    bottom: 0;
    left: 0;
    border-radius: 0 0 5px 5px;
}
.base::before {
    content: '';
    position: absolute;
    bottom: 2.5px; /* Положение кнопки */
    left: 50%;
    transform: translateX(-50%);
    width: 16px; /* Ширина кнопки */
    height: 1.25px; /* Высота кнопки */
    background-color: black; /* Цвет кнопки */
    border-radius: 0.75px; /* Закругление углов кнопки */
}
	/* универсальное окно с комментариями */
        #commentModal {
            display: none; /* Скрыть по умолчанию */
            position: fixed;
            left: 50%;
            top: 25%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 70%;
			padding: 20px;
            z-index: 1000;
			border-radius: 20px;
            opacity: 0; /* Начальная непрозрачность */
            transition: opacity 0.5s ease; /* Плавный переход прозрачности */
        }
        #overlay {
            display: none; /* Скрыть по умолчанию */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(128, 128, 128, 0.5);
            z-index: 999;
        }
		.close {
			background-color: #1161ed;
			color: #FFF;
			padding: 5px 20px;
			display: inline-block;
			height: 29px;
			border-radius: 15px;
			margin-top: 20px;
			transition: all 0.5s ease-in-out;
			border: none;
			text-transform: uppercase;
			text-decoration: none;
			cursor: pointer;
		}
	/* круги-метки красный, зеленый, желтый, 'белый' */
		.metka-krug-red	{
			width: 12px;
            height: 12px;
			border-radius: 6px;
			margin: 2px 4px 1px 1px;
			display: inline-block;
			background-color: /*red*/#F6465D;
		}
		.metka-krug-green	{
			width: 12px;
            height: 12px;
			border-radius: 6px;
			margin: 2px 4px 1px 1px;
			display: inline-block;
			background-color: /*green*/#2EBD85;
		}
		.metka-krug-yellow	{
			width: 12px;
            height: 12px;
			border-radius: 6px;
			margin: 2px 4px 1px 1px;
			display: inline-block;
			background-color: /*yellow*/#FCD535;
		}
		.metka-krug-greenyellow	{
			width: 12px;
            height: 12px;
			border-radius: 6px;
			margin: 2px 4px 1px 1px;
			display: inline-block;
			background: linear-gradient(to right, /*green*/#2EBD85 50%, /*yellow*/#FCD535 50%);
		}
		.metka-krug-white	{
			width: 12px;
            height: 12px;
			border-radius: 6px;
			margin: 2px 4px 1px 1px;
			display: inline-block;
			background-color: white/*#A7ACB5*/;
		}
		.metka-krug-red-2	{
			width: 24px;
            height: 24px;
			border-radius: 12px;
			margin: 4px 8px 2px 2px;
			display: inline-block;
			background-color: /*red*/#F6465D;
		}
		.metka-krug-green-2	{
			width: 24px;
            height: 24px;
			border-radius: 12px;
			margin: 4px 8px 2px 2px;
			display: inline-block;
			background-color: /*green*/#2EBD85;
		}
		.metka-krug-yellow-2	{
			width: 24px;
            height: 24px;
			border-radius: 12px;
			margin: 4px 8px 2px 2px;
			display: inline-block;
			background-color: /*yellow*/#FCD535;
		}
		.metka-krug-greenyellow-2	{
			width: 24px;
            height: 24px;
			border-radius: 12px;
			margin: 4px 8px 2px 2px;
			display: inline-block;
			background: linear-gradient(to right, /*green*/#2EBD85 50%, /*yellow*/#FCD535 50%);
		}
		.metka-krug-white-2	{
			width: 24px;
            height: 24px;
			border-radius: 12px;
			margin: 4px 8px 2px 2px;
			display: inline-block;
			background-color: white/*#A7ACB5*/;
		}
		.buttonplus{
			text-decoration: none;
			border: none; /* убирает стандартную рамку кнопки */
			padding: 0; /* убирает стандартные отступы */
			cursor: pointer;
		}
		/* обычный инфо-блок с текстом в подразделе */
		.info-block-text{
			margin: 20px 0px 10px 54px;
			width: 50%;
			
		}
		.info-knopka-text{
			-webkit-transition-duration: 0.4s;transition-duration: 0.4s;
			padding: 0em;
			background-color: #1e2023;
			color: #FCD535;
			border: 0;
			text-decoration: none;
			display: inline-block;
			white-space: nowrap;
		}
		.info-knopka-text:hover{
			color: #2EBD85;
			cursor: pointer;
		}