.social-media-channels
{
	display: flex;
	justify-content: end;
	align-items: center;
	margin: 15px 0;
}

.social-media-channels-title
{
	padding-right: 10px;
}

.social-media-channels-list
{
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
}

.social-media-channels-item
{
	padding-right: 15px;
	transition: 250ms linear all;
}

.social-media-channels-item:last-child
{
	padding-right: 0;
}

.social-media-channels-item-link
{
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #ebebeb url(/bitrix/components/bx/doc.social.buttons/img/social-sprite.svg) no-repeat center;
	transition: 200ms linear all;
}

.social-media-channels-item-link:hover
{
	transform: scale(1.1, 1.1);
}

.social-media-channels-item-link.vk
{
	background-position: center 7px;
}

.social-media-channels-item-link.yt
{
	background-position: center -303px;
}

.social-media-channels-item-link.rt
{
	background-position: center -425px;
}

.social-media-channels-item-link.tg
{
	background-position: center -128px;
}

@media (max-width: 460px)
{
	.social-media-channels
	{
		flex-direction: column;
		justify-content: center;
	}

	.social-media-channels-title
	{
		margin-bottom: 15px;
		padding: 0;
	}
}