/* Стиль плавающих мобильных кнопок на Телеграм и Whatsapp*/
.mobile-floating-messenger {
  position: fixed;
  bottom: 20px; /* Расстояние от нижнего края */
  right: 20px; /* Расстояние от правого края */
  display: flex;
  flex-direction: column; /* Расположение в столбик */
  gap: 5px; /* Отступ между кнопками */
  z-index: 1000; /* Поверх остального контента */
}

.mobile-floating-messenger .button a .image {
  opacity: 0.95;
  width: 70px;
}

/* Стиль плавающих кнопок перехода на мессенджеры, которые в правом нижнем углу десктопного экрана */
.floating-messengers {
    z-index: 1000;
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.floating-messengers .button {
    width: 274px;
    height: 44px;
    border-radius: 20px;
    overflow: hidden;
    transform-origin: right center;
    transition: transform 0.4s;
    opacity: 0.95;
}

.floating-messengers .button:hover {
    transform: scale(1.2);
    opacity: 1;
}

.floating-messengers .button a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 12px; /* Уменьшено на 20% от 15px */
    text-decoration: none;
}

.floating-messengers .image {
    max-width: 24px; /* Уменьшено на 20% от 30px */
    height: auto;
    margin-left: 5px; /* Уменьшено на 20% от 6px */
}

.floating-messengers .name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px; /* Уменьшено на 20% от 20px */
    color: #F4F4F4;
    margin-left: 14px; /* Уменьшено на 20% от 17px */
    white-space: nowrap;
}


/* Стиль кнопок перехода на мессенджеры, которые в окне рядом с QR-кодом */
.button-transition-messenger {
  width: 430px;
  height: 48px;
  border-radius: 7px;
  display: flex;
  align-items: center; /* Вертикальное выравнивание */
  justify-content: center; /* Горизонтальное выравнивание */
  background-color: #5ed169;
}

.button-transition-messenger a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none; /* Убирает подчеркивание у ссылки */
}

.button-transition-messenger .image {
  width: 20px;
  margin-right: 10px; /* Добавляет отступ между картинкой и текстом */
}

.button-transition-messenger .name {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: #ffffff;
}

/* Стиль текста переключателей и самыих переключателей */

@media (min-width: 1025px) {
.t-input-block:not(.t-input-block_rd-flex) .t-radio__control {
    font-size: 20px !important;
}

.t-radio__indicator {
    height: 25px !important;
    width: 25px !important;
}
}

.site-footer {
	font-family: 'Ubuntu', sans-serif;
}

.site-footer .footer-menu {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.site-footer .footer-menu ul {
	padding-left: 0px !important;
}

.site-footer .footer-columns {
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
	justify-content: center;
}

.site-footer .footer-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 180px;
	word-wrap: break-word;
	word-break: break-word;
	width: 250px;
}

.site-footer .footer-column-title {
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 15px;
	width: 100%;
	padding-left: 0;
}

.site-footer .footer-column a,
.image-title {
	white-space: normal;
}

.site-footer .footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer .footer-column li {
	margin-bottom: 10px;
}

.site-footer .footer-menu a {
	color: #a9a9a9 !important;
	text-decoration: none !important;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	font: inherit !important;
	transition: opacity 0.2s ease;
	cursor: pointer;
}

.site-footer .footer-menu a:hover {
	opacity: 0.5;
}

.site-footer .submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	padding-left: 0px;
}

.site-footer .submenu.open {
	margin-top: 10px;
	max-height: 500px;
}

.site-footer .left_submenu_arrow {
	cursor: pointer;
	width: 14px;
	height: 12px;
	margin-left: 5px;
	vertical-align: middle;
	margin-top: -1px;
}

.site-footer .parent-link {
	display: flex;
	align-items: center;
}

.site-footer .image-title {
	margin-right: 5px;
}

.site-footer .footer-backlink {
	text-align: center;
}

.site-footer .back-link {
	color: #ffffff !important;
	text-decoration: none;
	transition: opacity 0.2s ease;
	text-decoration: none !important;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
}

.site-footer .back-link:hover {
	opacity: 0.5;
}

.site-footer .footer-info {
	color: #a9a9a9;
	text-align: center;
	font-size: 12px;
	margin-top: 60px;
}

@media (max-width: 768px) {
	.footer-columns {
		flex-direction: column;
		align-items: center;
}

	.footer-column {
		margin-bottom: 30px;
	}
}


    
