html {
    scrollbar-color: #AAA #FFF;
    scrollbar-width: thin;
}
::-webkit-scrollbar {
    background: #FFF;
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FFF;
    border-radius: 2px;
    box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb {
    background-color: #CCC;
    border-radius: 2px;
    box-shadow: inset 0 0 1px 1px #888;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #AAA;
}

.container {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1120px;
}

.main__aside {
    margin-right: 20px;
    width: 220px;
}

.main-banner {
	overflow: hidden;
    position: relative;
}
img.main-banner__image {
	height: 100%;
	left: 50%;
	max-width: none !important;
	object-fit: contain;
	object-position: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 4000px;
}
.main-banner__container {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 1100px;
}

.callback-form-on-banner {
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 1px 6px -1px rgba(0, 0, 0, .2);
    left: 20px;
	padding: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
}
.callback-form-on-banner__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.breadcrumb {
    margin: 20px 0;
}
.breadcrumb__item {
	color: var(--color-gray-3);
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.2;
}
.breadcrumb__item:not(:last-child)::after {
	content: '/';
	display: inline-block;
	margin: 0 5px;
	vertical-align: middle;
}
.breadcrumb__item:last-child {
	color: var(--color-gray-2);
	display: inline-block;
}
.breadcrumb__item a {
    color: inherit;
    text-decoration: none;
}
.breadcrumb__item a:hover {
	color: var(--theme-color-2);
	text-decoration: underline;
}
