.product-menu {
    display: none;
    position: absolute;
    margin-top: 7px;
    max-width: 98%;
}

.product-menu__wrapper {
    background-color: #fafafa;
    border: 1px solid #dcddde;
    border-radius: 12px;
    margin-top: 15px;
    min-height: 550px;
    overflow: hidden;
    display: inline-flex;
}

.menu_products {
    padding: 13px 0;
}

.product-menu_active {
    display: flex;
}

.product-menu__main {
    padding: 25px 15px;
    overflow: auto;
    max-width: 550px;
    flex-shrink: 0;
}

.product-menu__item {
    cursor: pointer;
    display: flex;
    border: 6px solid;
    margin-bottom: 10px;
    min-height: 130px;
    font-weight: bold;
}

.product-menu__item_active .product-menu__icon {
    background-color: #003d76;
}

.product-menu__item_active .product-menu__icon svg {
    max-width: 42px;
}

.product-menu__item:nth-child(1) {
    border-color: #003d76;
}

.product-menu__item_active:nth-child(1) .product-menu__icon {
    background-color: #003d76;
}

.product-menu__item:nth-child(1) .product-menu__icon svg {
    fill: #003d76;
}

.product-menu__item:nth-child(2) {
    border-color: #ffa500;
}

.product-menu__item_active:nth-child(2) .product-menu__icon {
    background-color: #ffa500;
}

.product-menu__item:nth-child(2) .product-menu__icon svg {
    fill: #ffa500;
}

.product-menu__item:nth-child(3) {
    border-color: #003d76;
}

.product-menu__item_active:nth-child(3) .product-menu__icon {
    background-color: #003d76;
}

.product-menu__item:nth-child(3) .product-menu__icon svg {
    fill: #003d76;
}

.product-menu__item:nth-child(4) {
    border-color: #ffa500;
}

.product-menu__item_active:nth-child(4) .product-menu__icon {
    background-color: #ffa500;
}

.product-menu__item:nth-child(4) .product-menu__icon svg {
    fill: #ffa500;
}

.product-menu__item_active:nth-child(1) .product-menu__icon svg,
.product-menu__item_active:nth-child(2) .product-menu__icon svg,
.product-menu__item_active:nth-child(3) .product-menu__icon svg,
.product-menu__item_active:nth-child(4) .product-menu__icon svg {
    fill: #fff;
}

.product-menu__icon {
    flex: 1;
    padding: 0 21px 0 15px;
    display: flex;
}

.product-menu__name {
    flex: 10;
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.product-menu__submenu {
    background-color: #fff;
}

.product-submenu__block {
    display: none;
    padding: 20px;
}

.product-submenu__block_active {
    display: block;
}

.product-submenu__block_blocks {
    flex-direction: row;
    max-width: 100%;
}

.product-submenu__sections {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.product-submenu__section {
    width: 33.33333%;
    padding: 0 5px;
}

.product-submenu__link {
    display: flex;
    background-color: #fafafb;
    margin-bottom: 10px;
    border-radius: 4px;
    align-items: center;
    padding: 5px;
}

.product-submenu__block_blocks .product-submenu__section.product-submenu__section_title {
    width: 100%;
    max-width: 100%;
}

.product-submenu__link, .product-submenu__header {
    font-weight: bold;
}

.product-submenu__link_title {
     max-width: 100%;
     width: 100%;
 }

.product-submenu__item {
    padding-right: 20px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-submenu__name {
    padding: 15px;
    text-transform: uppercase;
    font-size: 0.8em;
}

.product-submenu__title {
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-submenu__caption {
    margin-bottom: 20px;
    font-size: 0.9em;
}

#productMenuToggler {
    padding: 1px 11px;
    border-radius: 15px;
    background-color: #f89820;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
    border: none;
    text-transform: uppercase;
}

#productMenuToggler.active .menu__box {
    visibility: visible;
    left: 0;
}

#productMenuToggler::before {
    content: url("img/product_open.svg");
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
#productMenuToggler.active::before {
    content: url("img/product_close.svg");
}

.header-menu__overlay {
    position: fixed;
    z-index: 450;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,.7);
}
header {
    z-index: 1000;
}

.product-menu__triangle {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -24px;
    left: 420px;
}
.product-menu__triangle:after,
.product-menu__triangle:before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.product-menu__triangle:before {
    border-color: transparent transparent #dcddde transparent;
    border-width: 20px 20px 28px 20px;
    bottom: 0;
}

.product-menu__triangle:after {
    border-color: transparent transparent #fafafa transparent;
    border-width: 20px 18px 25px 18px;
    bottom: 0;
    left: 2px;
}

.advantages {
    display: flex;
}
.advantages__item {
    align-items: center;
    display: flex;
    flex: 1;
}
.advantages__icon {
    flex: 1;
    max-width: 60px;
}
.advantages__caption {
    font-weight: bold;
    line-height: 1.2;
    flex: 5;
    padding: 10px;
}
