.full-feed {
	margin: 20px 15px;
}
.full-feed .icon-block {
	display: flex;
	justify-content: center;
	gap: 30px;
	font-size: 1.2rem;
}
.full-feed .icon-block__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;	
}
.full-feed .contact-block__item.company {
	display: flex;
	align-items: center;
	gap: 10px;
}
.full-feed .contact-block.text_work {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 0;
	font-size: 1rem;
	width: 100%;
}
.not-work-svg {
	display: flex;
	align-items: center;
	gap: 10px;
}
.full-feed .work,
.full-feed .not-work {
	padding: 2px 10px;
	font-size: 0.9rem;
	border-radius: var(--radius);
	margin-left: auto;
}
.full-feed .work {
	background: var(--gradient-success);
	color: var(--text);
}
.full-feed .not-work {
	background: var(--gradient-error);
	color: var(--white);
}
.full-feed .contact-block.phone-block {
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}
.full-feed .contact-block__item.additionals {
	flex-direction: column;
	align-items: flex-start;
}
.full-feed .contact-block__item.additionals span {
	display: flex;
}
.full-feed .contact-block.office-block,
.full-feed .contact-block.sklad-block {
	width: 100%;
	background: #ffffff;
	position: relative;
	overflow: hidden;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	box-shadow: var(--shadow-bottom);
	margin: 10px;
	font-size: 0.95rem;
	transition: box-shadow 0.2s linear;
}
.full-feed .contact-block.office-block:hover,
.full-feed .contact-block.sklad-block:hover {
	box-shadow: var(--shadow-select);
}
.full-feed .contact-block__item.gps strong {
	text-align: center;
	font-family: var(--font-Condensed);
	font-size: 1.4rem;
	padding: 10px 5px 15px 5px;
}
.full-feed .contact-block__item.gps > div {
	padding: 0 10px;
}
.full-feed .contact-block__item.gps > .vizit {
	padding-bottom: 15px;
}
.full-feed .soc-block {
    justify-content: center;
}
.full-feed .soc-block svg {
    width: 2.5rem;
    height: 2.5rem;
}


@media only screen and (max-width: 991.98px) {
	.full-feed .contact-block.office-block,
	.full-feed .contact-block.sklad-block {
		margin: 15px 5px 10px 5px;
	}
}
@media only screen and (max-width: 639.98px) {
	.full-feed .icon-block {
		flex-direction: column;
	}
	.full-feed .contact-block.text_work {
		gap: 10px;
	}
	.full-feed .work,
	.full-feed .not-work {
		margin-left: unset;
		margin-left: unset;
	}
	.full-feed .contact-block.office-block,
	.full-feed .contact-block.sklad-block {
		margin: 0;
	}

}