:root {
	--accent: #ff842a;
	--text: #1b1b1b;
	--white: #ffffff;
	--grey: #777777;
	--border-color: #eee;
	--dark: #303030;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	position: relative;
	overflow-x: hidden;
	min-width: 320px;
	font-size: 14px;
	line-height: 16px;
	font-family: "TrebuchetMS", sans-serif;
}
.maxwidth-theme {
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}
.content {
	position: relative;
	background-image: url(/images/custom/8.png);
	padding: 112px 0 50px;
}
.header {
	position: relative;
	background-color: var(--white);
	box-shadow: 0px 2px 8px rgb(0 0 0 / 10%);
	width: 100%;
	height: auto;
	padding: 10px 0;
}
.header.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 101;
}
.header__wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__cell {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__cell > div {
	margin: 0 15px;
}
.header__cell > div:first-child {
	margin-left: 0;
}
.header__cell > div:last-child {
	margin-right: 0;
}
.logotype {
	display: flex;
	align-items: center;
}
.logotype__link {
	display: block;
}
.logotype img {
	max-width: 148px;
	height: auto;
}
.logotype__description {
	display: block;
	text-transform: uppercase;
	padding-left: 30px;
	max-width: 340px;
}
.header__cell .search-form {
	width: 250px;
}
.search-form {
	position: relative;
}
.search-form__wrapper {
	position: relative;
	padding-right: 34px;
}
form input {
	padding: 8px 10px;
	border: 1px solid #e6e6e6;
	font-family: "TrebuchetMS", sans-serif;
	font-size: 14px;
	width: 100%;
	height: auto;
	outline: none;
	border-radius: 0;
}
.search-form__button {
	display: block;
	width: 34px;
	height: 100%;
	background: var(--accent);
	color: var(--white);
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	z-index: 2;
}
.search-form__button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(/images/custom/icons/search_white.svg);
	background-repeat: no-repeat;
	background-size: 12px 12px;
	background-position: center center;
	cursor: pointer;
}
.phone-block {
	position: relative;
}
.phone-block__dropdown {
	padding-right: 20px;
}
.phone-block__dropdown:hover {
	box-shadow: 0px 2px 5px rgba(0,0,0,.12);
}
.phone-block__dropdown::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	background-image: url(/images/custom/icons/angle-down-solid_black.svg);
	background-repeat: no-repeat;
	background-size: 12px 12px;
	background-position: center center;
}
.phone-block__dropdown:hover::before {
	transform: translateY(-50%) rotate(180deg);
}
.phone-item {
	display: inline-block;
	font-size: 14px;
	color: var(--text);
	text-decoration: none;
}
.phone-block .phone-item {
	padding: 10px 15px;
}
.phone-dropdown {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: auto;
	box-shadow: 0px 2px 5px rgba(0,0,0,.12);
	background: var(--white);
	opacity: 0;
	visibility: hidden;
}
.phone-block__dropdown:hover .phone-dropdown,
.phone-dropdown:hover {
	opacity: 1;
	visibility: visible;
}
.user-links {
	display: flex;
	align-items: center;
	list-style: none;
}
.header__wrapper .user-links {
	padding-left: 30px;
}
.user-links li {
	margin: 0 12px;
}
.user-links li:first-child {
	margin-left: 0;
}
.user-links li:last-child {
	margin-right: 0;
}
.user-links li a {
	position: relative;
	display: block;
	color: var(--text);
	text-decoration: none;
}
.user-links li a span {
	display: inline-block;
	padding: 5px 0 0;
	white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 75px;
    overflow: hidden;
}
.icon-link {
	padding-left: 27px;
}
.icon-link::before {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 17px 17px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	cursor: pointer;
	opacity: .7;
}
.cabinet-link::before {
	background-image: url(/images/custom/icons/user_black.svg);
}
.basket-link::before {
	background-image: url(/images/custom/icons/basket-shopping-solid_black.svg);
}
.mobile-menu {
	display: none;
}
.hamburger-menu {
	position: relative;
	width: 30px;
	height: 30px;
	display: flex;
    align-items: center;
	cursor: pointer;
}
.hamburger-menu__inner {
	position: relative;
	width: 100%;
	height: 2px;
	background: var(--grey);
}
.hamburger-menu__inner::after,
.hamburger-menu__inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--grey);
}
.hamburger-menu__inner::after {
	transform: translateY(-10px);
}
.hamburger-menu__inner::before {
	transform: translateY(10px);
}
.middle {
	position: relative;
	overflow: hidden;
	z-index: 9;
}
.with_left {
	display: flex;
}
.with_right {
	display: flex;
}
.with_left .middle {
	flex: 0 0 80%;
	width: 80%;
	margin-left: auto;
}
.with_left.with_right .middle {
	flex: 0 0 60%;
	width: 60%;
}
.with_right .middle {
	flex: 0 0 80%;
	width: 80%;
}
.left_block {
	position: relative;
	z-index: 11;
	flex: 0 0 20%;
	width: 20%;
	padding-right: 20px;
}
.right_block {
	position: relative;
	z-index: 11;
	flex: 0 0 20%;
	width: 20%;
	padding-left: 20px;
}
.left_block > div:not(:last-child),
.right_block > div:not(:last-child) {
	margin-bottom: 20px; 
}
.white-box {
	background-color: var(--white);
}
.shadow-box {
	box-shadow: 0px 2px 8px rgba(0,0,0,.1);
}
.content-box {
	padding: 20px;
}
.content-box p,
.content-box ul,
.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
	margin: 0 0 15px 0;
}
.content-box ul li {
	margin: 0 0 10px 0;
}
.content-box ul {
	list-style: none;
}
.content-box:not(.contacts-info) ul li {
	position: relative;
	padding-left: 15px;
}
.content-box:not(.contacts-info) ul li::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--text);
}
.bg-title {
	background-color: var(--accent);
	color: var(--white);
	padding: 13px 20px;
	font-size: 16px;
	margin: 0;
}
.d-grid {
	display: grid;
	grid-gap: 20px;
}
.grid-items-2 {
	grid-template-columns: repeat(2, 1fr);
}
.grid-items-3 {
	grid-template-columns: repeat(3, 1fr);
}
.grid-items-4 {
	grid-template-columns: repeat(4, 1fr);
}
.grid-items-5 {
	grid-template-columns: repeat(5, 1fr);
}
.grid-items-6 {
	grid-template-columns: repeat(6, 1fr);
}
.btn {
	display: inline-block;
	background-color: var(--accent);
	border-color: var(--accent);
	color: var(--white);
	text-align: center;
	text-decoration: none;
	padding: 7px 20px;
}
.btn .fa {
	margin-right: 10px;
}
.btn:hover {
	background-color: #ff903e;
}
.btn-white {
	background-color: var(--white);
	color: var(--text);
	border: 1px solid var(--border-color);
}
.btn-white:hover {
	color: #fff;
	border-color: var(--accent);
}
.btn.btn-dark {
	background-color: var(--dark);
	color: var(--white);
	border: 1px solid var(--dark);
}
.btn.btn-dark:hover {
	color: #fff;
}
.product-items {
	display: grid;
	grid-gap: 20px;
}
.product-items.product-item-list-col-2 {
	grid-template-columns: repeat(2, 1fr);
}
.product-items.product-item-list-col-3 {
	grid-template-columns: repeat(3, 1fr);
}
.product-items.product-item-list-col-4 {
	grid-template-columns: repeat(4, 1fr);
}
.product-items.product-item-list-col-5 {
	grid-template-columns: repeat(5, 1fr);
}
.product-items.product-item-list-col-6 {
	grid-template-columns: repeat(6, 1fr);
}
.product-item {
	position: relative;
	border: 1px solid var(--border-color);
	padding: 12px 15px 20px;
	text-align: center;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	height: 100%;
}
.product-item__img,
.product-item-image-wrapper {
	width: 100%;
	height: 200px;
	margin-bottom: 10px;
}
.product-item-image-wrapper span {
	width: 100%;
	height: 100%;
	display: none;
	background-size: contain;
    background-position: center;
	background-repeat: no-repeat;
}
.product-item-image-wrapper span.product-item-image-original {
	display: block;
}
.product-item__img img,
.product-item-image-wrapper img {
	max-width: 100%;
	height: 100%;
	object-fit: contain;
}
.product-item__title,
.product-item__title a {
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	margin: 0 0 10px 0;
}
.product-item__price {
	display: block;
	margin: 16px 0;
	font-size: 16px;
}
.product-item__note {
	display: block;
	font-size: 12px;
	color: #666;
}
.product-item__buttons {
	margin-top: 16px;
}
.product-item__buttons .btn {
	width: 100%;
}
.product-item__label {
	position: absolute;
    left: -7px;
    margin-left: 0;
    top: 5px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    width: 100px;
    padding: 0;
    z-index: 9;
	box-shadow: 1px 1px 2px rgba(0,0,0,.12);
	background: #0093c9;
    color: #fff;
}
.product-item__label::before {
	content: '';
    position: absolute;
    top: 100%;
    left: 0;
    border: 3px solid transparent;
	border-top-color: #00668c;
    border-right-color: #00668c;
}
.product-item__label::after {
	content: '';
    position: absolute;
    top: 0;
    left: 100%;
    border: 11px solid transparent;
    border-left: none;
	border-top-color: #0093c9;
    border-bottom-color: #0093c9;
}
.main-menu {
	background-color: var(--dark);
	list-style: none;
}
.main-menu__item {
	position: relative;
	padding: 0 20px;
}
.main-menu__item:last-child .main-menu__link::after {
	display: none;
}
.main-menu__link {
	position: relative;
	display: block;
	padding: 13px 0;
	color: var(--white);
	text-decoration: none;
}
.main-menu__link.active,
.main-menu__link:hover {
	color: var(--accent);
	text-decoration: none;
}
.main-menu__link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,.1);
}
.main-menu__item:hover > .main-menu__link .main-menu__arrow {
	transform: translateY(-50%) rotate(-90deg);
}
.main-menu__arrow {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-size: 12px;
	pointer-events: none;
}
.sub-menu {
	background-color: var(--dark);
    list-style: none;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 101;
    width: 220px;
	opacity: 0;
	visibility: hidden;
	transition: all .2s ease-out;
}
.main-menu__item:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
}
.sub-menu::after {
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
	width: 1px;
	height: 100%;
	background-color: rgba(255,255,255,.1);
}
.smp-news {
	position: relative;
}
.smp-news-item {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
}
.smp-news-item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}
.smp-news-item__top {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	margin-bottom: 10px;
}
.smp-news-item__img {
	width: 100%;
	height: 180px;
}
.smp-news-item__img img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.smp-news-item__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.45);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	transition: all .2s ease-out;
	opacity: 0;
	padding: 0 7px;
}
.smp-news-item__top:hover .smp-news-item__overlay {
	opacity: 1;
}
.smp-news-item__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
}
.smp-news-item__date {
	display: block;
	margin-bottom: 7px;
	font-size: 12px;
	color: #666;
}
.smp-news-item__title,
.smp-news-item__title a {
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
}
.smp-news-item__title a:hover {
	color: var(--accent);
}
.contacts-info ul {
	list-style: none;
	margin: 0 0 12px 0;
}
.contacts-info ul li:not(:last-child) {
	margin-bottom: 12px;
}
.contacts-info ul li a {
	text-decoration: none;
	color: var(--text);
}
.contacts-info ul li .fa {
	max-width: 10px;
	margin-right: 7px;
}
.contacts-info p {
	margin: 0 0 12px 0;
}
.grey_color {
	color: var(--grey) !important;
}
.hidden-lg {
	display: none !important;
}
#mobile-menu {
	display: none;
	position: fixed;
	top: -200%;
	left: 0;
	width: 100%;
	height: auto;
	overflow-x: hidden;
	z-index: 999;
	background: var(--dark);
    padding: 50px 0 0;
	opacity: 0;
	visibility: hidden;
	transition: all .6s ease-out;
}
#mobile-menu.show {
	top: 0;
	opacity: 1;
	visibility: visible;
}
#mobile-menu .bg-title {
	display: none;
}
#mobile-menu .main-menu {
	max-height: 400px;
	overflow-y: scroll;
}
.left-menu__close {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--dark);
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 36px;
	cursor: pointer;
	z-index: 7;
}
.left-menu__close .fa {
	color: var(--white);
}
#mobile-menu .sub-menu {
	position: relative;
	width: 100%;
	height: auto;
	left: 0;
	visibility: visible;
	opacity: 1;
	display: none;
}
#mobile-menu .sub-menu::after {
	display: none;
}
#mobile-menu .sub-menu .main-menu__item {
	padding: 0;
}
#mobile-menu .main-menu__item.active > .sub-menu {
	display: block;
}
#mobile-menu .main-menu__item.active > .main-menu__link .main-menu__arrow {
	transform: translateY(-50%) rotate(180deg);
}
#mobile-menu .sub-menu .main-menu__item .main-menu__link::after {
	display: block;
}
#mobile-menu .main-menu__item:hover .main-menu__arrow {
	transform: translateY(-50%) rotate(0);
}
.footer {
	position: relative;
	background-color: var(--dark);
	padding: 30px 0;
	color: #bbb;
}
.footer__wrapper {
	position: relative;
}
.footer__row {
	display: grid;
	grid-template-columns: 65% auto;
	grid-gap: 30px;
}
.list .list__title {
	display: inline-block;
	color: var(--white);
	border-bottom: 1px solid #3b3b3b;
	padding-bottom: 15px;
	margin-bottom: 15px;
	font-size: 16px;
}
.list ul {
	list-style: none;
	margin: 0 0 30px;
}
.list ul li:not(:last-child) {
	margin-bottom: 12px;
}
.list ul li a {
	color: #bbb;
	text-decoration: none;
}
.list ul li a:hover {
	color: var(--accent);
}
.footer__left {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}
.footer__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.footer__right .list ul {
	margin: 0 0 12px;
}

.section-list {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(6, 1fr);
	margin: 0 0 30px 0;
}
.section-item {
	display: block;
	color: var(--text);
	position: relative;
}
.section-item:hover {
	text-decoration: none;
	color: var(--text);
}
.section-item:hover .section-item__box::after {
	opacity: 1;
}
.section-item:hover .section-item__count {
	display: block;
}
.section-item__title {
	margin: 10px 0 0 0;
	font-size: 14px;
}
.section-item__box {
	position: relative;
	height: 136px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	text-align: center;
}
.section-item__box::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
	z-index: 1;
	transition: opacity .4s ease;
	opacity: 0;
}
.section-item__image {
	width: auto; /*100%;*/
	height: auto; /*100%;*/
	object-fit: contain;
}
.section-item__count {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	z-index: 2;
	display: none;
	font-size: 16px;
}
.catalog-element {
	position: relative;
	overflow: hidden;
}
.catalog-element__title {
	margin: 0 0 30px;
	font-size: 20px;
	line-height: 1.4;
}
.catalog-element__information {
	position: relative;
	padding: 20px 0;
	min-height: 300px;
}
.catalog-element__gallery {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.catalog-element__info {
	margin-left: auto;
	width: 60%;
	padding-left: 30px;
}
.catalog-element__price {
	font-size: 22px;
	margin: 0 0 30px 0;
}
.catalog-element__description {
	padding-top: 30px;
}
.catalog-element__gallery {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: auto;
}
.element-slider__slide {
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.element-slider__slide .element-slider__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.element-slider__link {
	display: block;
	width: 100%;
	height: 100%;
}
.swiper-button-prev,
.swiper-button-next {
	width: 30px;
	height: 30px;
	background-color: var(--accent);
	border-radius: 50%;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
	font-size: 14px;
	color: var(--white);
}
.hidden {
	display: none !important;
}
.catalog-detail .product-item-detail-info-container {
	margin-bottom: 15px;
	font-family: "TrebuchetMS", sans-serif;
}
.catalog-element__props {
	margin: 30px 0;
}
.catalog-element__props table {
	width: 100%;
}
.sm-title {
	font-weight: bold;
	font-size: 16px;
	margin: 10px 0 20px 0;
}
table {
	border-collapse: collapse;
	margin: 10px 0 20px;
}
table tr {
	padding: 5px 10px;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
table tr td:first-child {
	width: 300px;
	color: #777;
}
table td {
	padding: 10px 15px;
}
.icon {
	display: block;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
.icon.icon-file {
	background-image: url(/images/custom/icons/file_orange.svg);
}
.doc-list {
	margin: 30px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}
.doc-item {
	display: flex;
	align-items: center;
}
.doc-item .icon {
	margin-right: 10px;
}
.doc-item__label {
	display: block;
	color: var(--text);
	text-decoration: none;
	max-width: 200px;
	word-break: break-word;
}
.content-box .search-page {
	margin-bottom: 20px;
}
.user-links .basket-link .bx-basket-block {
    padding-left: 0px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    font-family: "TrebuchetMS", sans-serif !important;
}
.news-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}
.news-date-time {
	display: block;
    color: #666;
	font-size: 13px;
}
.news-title {
	display: inline-block;
	text-decoration: none;
	color: var(--accent);
	font-size: 16px;
	margin: 10px 0;
}
.news-item .news-title:hover {
	text-decoration: underline;
}
.news-detail-text {
	padding: 20px 0;
}
.news-back a {
	color: var(--accent);
}
.breadcrumbs {
	margin-bottom: 20px;
	padding: 13px 20px;
}
.breadcrumbs-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.breadcrumbs-list li {
	position: relative;
	display: inline-block;
	padding-right: 15px;
}
.breadcrumbs-list li::after {
	content: '\203A';
	position: absolute;
	top: 0;
	right: 3px;
}
.breadcrumbs-list li:last-child::after {
	display: none;
}
.breadcrumbs-list li,
.breadcrumbs-list li a {
	font-size: 13px;
}
.breadcrumbs-list li a {
	text-decoration: none;
	color: var(--accent);
}
.review-item {
	position: relative;
	overflow: hidden;
	border: 1px solid #e6e6e6;
	margin-bottom: 20px;
}
.review-item__inner {
	display: flex;
	padding: 20px;
}
.review-item__inner .review-item__info {
	flex: 0 0 20%;
}
.review-item__inner .review-item__content {
	flex: 1;
}
.review-item__info p {
	margin: 0;
}
.review-item__date {
	margin: 7px 0 12px !important;
	font-size: 13px;
	color: #666;
}
.review-item__content {
	padding: 5px 5px 5px 20px;
	border-left: 1px solid #e6e6e6;
}
.review-item__bottom {
	padding: 20px;
	background: #f8f8f8;
}
.rating-block {
	font-size: 0;
}
.rating-item {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: #4caf50;
	margin: 0 2px;
}
.rating-item:first-child {
	margin-left: 0;
}
.rating-item:last-child {
	margin-right: 0;
}
.tg-file {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #e6e6e6;
}
.tg-file .icon {
	margin-right: 10px;
}
.tg-file__link {
	display: inline-block;
	color: var(--text);
	text-decoration: none;
}
.contacts-info ul li {
	padding-left: 0 !important;
}
.contacts-info ul li::before {
	display: none;
}
.contacts-content {
	display: flex;
	justify-content: space-between;
	margin: 30px 0;
}
table.schedule-table {
	width: 100%;
}
table.schedule-table tr:first-child {
	border-top: none;
}
table.schedule-table tr td,
table.schedule-table tr th {
	font-size: 13px;
	padding: 7px 10px;
}
table.schedule-table tr td:first-child {
	width: auto;
}
table.schedule-table tr th:first-child,
table.schedule-table tr td:first-child {
	padding-left: 0;
	text-align: left;
}

.sale-personal-section-index-block.bx-theme-blue {
    background: #303030;
}
.sale-personal-section-index-block {
    opacity: 1;
	margin: 15px 5px;
	border-radius: 0;
}
.content-box p, .content-box ul, .content-box h1, .content-box h2, .content-box h3, .content-box h4, .content-box h5, .content-box h6 {
    margin: 15px 0 0 0;
}
.sale-personal-section-index-block-link, .sale-personal-section-index-block-link:hover, .sale-personal-section-index-block-link:active, .sale-personal-section-index-block-link:focus, .sale-personal-section-index-block-link:visited {
    padding: 15px 15px 5px;
}
.sale-personal-section-index-block-ico {
    font-size: 48px;
}
.sale-personal-section-index-block-name {
    font-size: 14px;
}