/* Left menu*/
ul.left-menu
{
	list-style:none;
	margin:0; padding:0;
	margin-bottom:8px;
	position: relative; /*IE bug*/
}

ul.left-menu li
{
	padding: 10px 16px;
	background:#F5F5F5 url(images/left_menu_bg.gif) top repeat-x;
}

ul.left-menu li a
{
	font-size:100%;
	color:#BC262C;
	font-weight:bold;
	text-decoration:none;
}

ul.left-menu li a:visited
{
	color:#BC262C;
}

ul.left-menu li a:hover
{
	color:#BC262C;
}


ul.left-menu li a.selected:link,
ul.left-menu li a.selected:visited,
ul.left-menu li a.selected:active,
ul.left-menu li a.selected:hover
{
	color:#FC8D3D;
}


    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .main-menu__wrapp .catalog-dd {
        max-width: 850px;
        padding-top: 0;
        padding-bottom: 0;
        border-radius: 5px;
        background: transparent;

    }


    header nav>ul>li .catalog-dd {
        display: none;
    }

    header nav>ul>li:hover .catalog-dd {
        display: block;
    }


    .main-menu__wrapp .catalog-dd-inner {
        padding-top: 13px;
    }

    .main-menu__wrapp .catalog-dd .container {
        padding: 0;
    }

    header nav>ul>li:hover .catalog-dd {
        transform: translate(-50%, 0);
        left: 50%;
    }

    .catalog-dd {
        left: 50%;
    }

    .menu-content {
        border: 1px solid #D4D4D4;
        display: flex;
        height: auto;
        background: white;
        border-radius: 8px;
        width: 100%;
    }

    .menu-sections {
        width: 35%;
        background: transparent;
        padding: 0;
    }

    .menu-section {
        padding: 15px 3px 15px 30px;
        cursor: pointer;
        color: #666;
        transition: all 0.2s ease;
        font-family: 'Jost';
        font-weight: 300;
        font-size: 15px;
        line-height: 100%;
        text-transform: uppercase;
    }

    .menu-section:hover,
    .menu-section.active {
        background: #F5F5F5;
        color: #000;
    }

    .menu-subsections {
        background: #F5F5F5;
        width: 30%;
        padding: 0;
    }

    .menu-subsection {
        padding: 13px 20px;
        cursor: pointer;
        color: #666;
        font-size: 13px;
        transition: color 0.2s ease;
    }

    .menu-subsection:hover {
        color: #333;
    }

    .menu-images {
        width: 35%;
        flex: 1;
        padding: 8px;
        display: flex;
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        background: #F5F5F5;
		
		flex: 0 1 50%;
    }
	
	.product-image > a {
		height: 100%;
		display: flex;
		flex-direction: column;
	}

    .product-image__row {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 170px;
		background: #fff;
		flex: 0 0 auto;
    }

    .product-image__row img {
        /* position: absolute; */
        object-fit: contain;
        /* top: 0; */
        /* bottom: 0; */
        /* right: 0; */
        /* left: 0; */
		width: 100%;
		height: 100%;
    }

    .product-title {
        padding: 10px;
        font-size: 12px;
        color: #000;
        text-align: center;
        font-family: 'Jost';
        font-weight: 300;
        font-style: Light;
        font-size: 13px;
        line-height: 100%;
        letter-spacing: 0%;
		flex: 1 1 100%;
		display: flex;
		justify-content: center;
		align-items: center;
    }

    .catalog-dd .menu-subsection a {
        font-family: 'Jost';
        font-weight: 300;
        font-size: 15px;
        line-height: 100%;
    }


    @media (max-width: 920px) {
        .main-menu__wrapp .catalog-dd {
            max-width: 680px;
        }
    }