* {
    box-sizing: border-box;
}

a:link, a:visited, a:active, li a.active {
    color: #576921;
    outline: none;
}

a:hover {
    color: #cc0000;
}

p {
    margin: 0 0 1em 0;
}

blockquote {
    color: #808080;
    font-size: 1rem;
    font-style: italic;
    padding: 0;
    margin: 0 0 1em 0;
}

ul {
    margin: 0;
    padding: 0 0 0 20px;
    list-style-type: circle;
    list-style-position: outside;
}

figure {
    margin: 0;
    padding: 0;
}

svg:not(:root) {
    overflow: hidden;
}

html {
    font-size: 15px;
    line-height: 1.333rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system,
               BlinkMacSystemFont,
               "Segoe UI",
               Roboto,
               Oxygen-Sans,
               Cantarell,
               "Helvetica Neue",
               sans-serif;
    background: none repeat scroll 0 0 #DDDDDD;
    color: #111111;
}

/* --- Maket --*/

.site-wrap {
    background-color: #FFFFFF;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
    border-radius: 10px 10px 10px 10px;
    margin: 29px auto;
    padding: 10px 19px 15px 19px;
    max-width: 1300px;
}

@media only all and (max-width: 1300px) {
    .site-wrap {
        margin: 0 auto;
        padding: 10px 10px 0 10px;
        border-radius: 0;
    }
}

@media only all and (max-width: 400px) {
    .site-wrap {
        margin: 0 auto;
        padding: 10px 10px 0 10px ;
        border-radius: 0;
    }
}

.base-region-inner {
    width: 100%;
}

.top-wrap {
}

.top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 120px;
    padding-top: 5px;
}

.top-info-wrap {
    flex: 0 0 auto;
    margin-right: 2em;
    line-height: 32px;
}

.top-nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #768a38;
    background-image: linear-gradient(to bottom,#86a133,#576921);
    border-radius: 5px 5px 0 0;
    height: 40px;
}

.breadcrumbs-nav-wrap {
    background-color: #eeeeee;
    border-radius: 0 0 7px 7px;
    border-bottom: 1px solid #B8B8B8;
    border-left: 1px solid #C2C2C2;
    border-right: 1px solid #C2C2C2;
}

.content-wrap {
    background-color: #fff;
}

.footer-wrap {
    background-color: #fff;
}

.content {
    display: flex;
}

.content__main-content {
    flex: 1 1 auto;
    min-width: 240px; /* Мин. ширина обязательна для правильной работы overflow */
    max-width: 782px;
}

.main-content__product {
    width: 100%;
}

.content__sidebar1 {
    flex: 0 0 240px;
    /* order: -1; */
}

.content__sidebar2 {
    flex: 0 0 240px;
}

.footer-wrap {
    margin-top: 20px;
    border-top: 1px solid #eee;
}

/* --- End Maket --*/


/* --- top-site-info ---*/

.top-info {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}

.top-info__logo {
    /* flex: 1 1 auto;
    white-space: nowrap; */
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    width: 400px;  /* must be for flexmenu */
    height: 91px;
    color: #dddddd;
    font-size: 26px;
    font-weight: 500;
    font-family: 'Montserrat Alternates', sans-serif;
    vertical-align: middle;
    letter-spacing: -0.025em;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
}

.logo__text {
    flex: 0 1 auto;
    white-space: nowrap;
}

.logo__first-letter {
    display: inline-block;
    position: relative;
    top: -4px;
    color: #d05454;
    font-size: 36px;
    vertical-align: middle;
}

.logo__another-letters {
    display: inline-block;
}

.logo__preffix {
    position: relative;
    top: -5px;
    width: 38px;
    height: 38px;
    margin-right: 5px;
}

.logo__suffix {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.top-search {
    flex: 1 1 auto;
    max-width: 360px;
    margin-left: 15px;
}

.top-search__form {
    position: relative;
}

.top-search__query {
    width: 100%;
    min-height: 24px;
    border-radius: 3px;
    border: 1px solid #CCCCCC;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1) inset;
    font-size: 1rem;
    padding: 7px 35px 7px 10px;
    outline: none;
}

.top-search__submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
	outline: none;
}

.top-search__submit svg {
    fill: #bcbcbc;
}

@media only all and (max-width: 520px) {
    .top-search {
        display: none;
    }
}

/* --- End top-site-info ---*/


/* --- Breadcrumbs --*/

.breadcrumbs {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 8px 14px;
    list-style: none;
    font-size: 0.9rem;
    color: #333;
}

.breadcrumbs__item {
    flex: 0 1 auto;
}

.breadcrumbs__item+.breadcrumbs__item:before {
    content: "\00BB";
    padding: 0 5px;
}

.breadcrumbs__link, .breadcrumbs__link:link, .breadcrumbs__link:visited {
    color: #333;
    text-decoration: none;
}

.breadcrumbs__homepage .breadcrumbs__link, .breadcrumbs__homepage .breadcrumbs__link:link, .breadcrumbs__homepage .breadcrumbs__link:visited {
    color: #727272;
}

.breadcrumbs__homepage svg {
    display: block;
    margin-bottom: 1px;
}

/* --- End Breadcrumbs --*/


/* --- Menus ---*/


/* Main Menu */

.top-nav {
    /* position: relative; */
    display: flex;
}

.top-nav .menu_main {
    flex: 0 1 auto;
    height: 32px;
    /* line-height: 32px; */
    overflow: hidden;
    padding: 0 10px;
}

.top-nav .menu_main.menu_more {
    flex: 0 0 auto;
    margin-left: auto
}

.menu, .menu_item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu_horizontal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.menu_horizontal > .menu__item {
    flex: 0 0 auto;
}

.menu_main > .menu__item > .menu__link-wrap {
    display: flex;
    align-items: center;
}

.menu__item-marker-wrap {
    display: inline-block;
}

.menu_main > .menu__item > .submenu {
    position: absolute;
    top: auto;    /* px only */
    left: 0;  /* px only */
    right: 0;  /* px only */
    display: none;
    max-width: 360px;  /* px only */
    min-width: 200px;
    margin: 0 7px;  /* px only */
    padding: 10px;
    background-color: #eeeeee;
    border-radius: 2px 2px 3px 3px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    box-sizing: border-box;
    z-index: 1000;
}

.menu_main > .menu__item {
    padding: 1px 7px;
    line-height: 1.3em;
    border-top: 1px solid transparent;
}

.menu_flex.menu_horizontal {
    visibility: hidden;
}

.menu_main.menu_more > .menu__item {
    padding-left: 0;
    padding-right: 0;
}

.menu_main > .menu__item:first-child {
    /* padding-left: 0; */
}

.menu_main > .menu__item:not(:last-child) {
    margin-right: 5px;
    border-right: 1px solid rgba(149, 169, 86, 0.75);
}

.menu_main > .menu__item > .menu__link-wrap {

}

.menu_main > .menu__item > .menu__link-wrap .menu__link {
    padding: 5px 0;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

.menu_main:hover > .menu__item.menu__item_active {
    background-color: transparent;
    border-radius: 0;
}

.menu_main > .menu__item.menu__item_active, .menu_main:hover > .menu__item.menu__item_active:hover {
    /* border-top: 1px solid rgba(255, 255, 255, 0.6); */
    background-color: rgba(149, 169, 86, 0.75);
    border-radius: 3px;
}

.menu_main > .menu__item.menu__item_active > .menu__link-wrap .menu__link {

}

.menu_main > .menu__item:hover {
    /* border-top: 1px solid #ffffff; */
    background-color: rgba(149, 169, 86, 0.75);
    border-radius: 3px;
}

.menu_main > .menu__item_expanded:hover > .menu__link-wrap .menu__link {
    color: #fff;
}

.menu_main > .menu__item > .menu__link-wrap .menu__dropdown-toggle {
    color: #efefef;
    border-radius: 3px;
    cursor: pointer;
}

.menu_main > .menu__item > .menu__link-wrap .menu__dropdown-toggle:after {
    content: "\25BC";
    padding: 3px 0 3px 3px;
}

.menu_main.menu_more > .menu__item > .menu__link-wrap .menu__dropdown-toggle:after {
    display: none;
    content: "\2026";
}

.menu_main.menu_more > .menu__item > .menu__link-wrap > .menu__link {
    position: relative;
    /* top: -2px; */
    padding: 0;
}

.menu_main.menu_more > .menu__item > .menu__link-wrap > .menu__link svg {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}

.menu__more-icon {
    display: none;
}

.menu__gamburger-icon {
    display: block;
}

.menu_main > .menu__item_expanded > .menu__link-wrap .menu__dropdown-toggle:after {
    content: "\25B2";
}

.menu_main > .menu__item:hover > .menu__link-wrap .menu__dropdown-toggle {
    /* background-color: #c22121; */
}

.menu_main > .menu__item_active > .menu__link-wrap .menu__dropdown-toggle {
    color: #efefef;
}

/* vertical menus in blocks */

.menu_vertical .submenu {
    display: none;
}

.menu_vertical .menu__link-wrap {
    display: flex;
    align-items: center;
}

.menu_vertical .menu__link {
    flex: 0 0 auto;
    color: #333333;
    text-decoration: none;
}

.block .menu_vertical .menu__link {
    color: #576921;
}

.menu_vertical .menu__link:hover {
    text-decoration: underline;
}

.menu_vertical .menu__item_last-active > .menu__link-wrap .menu__link {
    color: #c22d46;
    text-decoration: none;
}

.menu_vertical .menu__item-marker-wrap {
    flex: 0 0 auto;
    order: -1;
}

.menu_vertical .menu__item-marker-wrap {
    height: 15px;
    width: 13px;
    margin-right: 3px;
    line-height: 15px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    box-sizing: border-box;
    text-align: center;
}

/* for tachscreen devices */
@media (any-pointer: coarse) {
    .menu_main .menu_vertical .menu__item-marker-wrap {
        height: 20px;
        width: 17px;
        line-height: 20px;
        font-size: 20px;
    }
}

.menu_vertical .menu__item_last-active > .menu__link-wrap > .menu__item-marker-wrap {
    color: #c22d46;
}

.menu_vertical .menu__dropdown-toggle {
    border-radius: 3px;
    cursor: pointer;
}

.menu_vertical .menu__link-wrap > .menu__item-passive-marker:after {
    content: "\25CB";
}

.menu_vertical .menu__item_last-active > .menu__link-wrap > .menu__item-passive-marker:after {
    content: "\25CF";
    color: #d4566b;
}

.menu_vertical .menu__dropdown-toggle:after {
    content: "\229E";  /* plus */
    color: #333333;
}

.block .menu_vertical .menu__dropdown-toggle:after {
    color: #576921;
}

.menu_vertical .menu__item_expanded > .menu__link-wrap > .menu__dropdown-toggle:after {
    content: "\229F";  /* minus */
    color: #333333;
}

.block .menu_vertical .menu__item_expanded > .menu__link-wrap > .menu__dropdown-toggle:after {
    color: #576921;
}

/* active item must be opened */
.menu_vertical .menu__item_active.menu__item_expanded > .submenu {
    display: block;
}

.menu_vertical .menu__item {
    padding: 5px 0;
}

.menu_vertical .menu__item_level-1:not(:last-child) {
    border-bottom: 1px dashed #ccbe9b;
}

/* for tachscreen devices */
@media (any-pointer: coarse) {
    .menu_main .menu_vertical .menu__item {
        padding: 5px 0;
    }
}

.menu_vertical .menu__item:first-child {
    padding-top: 0;
}

.menu_vertical .menu__item:last-child {
    padding-bottom: 0;
}

.menu_vertical .submenu {
    margin: 5px 0 0 1px;
    border-left: 1px solid #c0c0c0;
}

.menu_main .menu_vertical .submenu {
    margin-left: 1px;
    border-left: 1px solid #b0b0b0;
}

.menu_vertical .submenu.submenu.menu_level-2 {
    /* background-color: #ddd; */
}

.menu_vertical .submenu.menu_level-3 {
    /* background-color: #ccc; */
}

.menu_vertical .submenu .menu__item {
    padding-left: 15px;
}

/* --- End Menu ---*/


/* --- Block ---*/

.block {
    margin-bottom: 30px;
}

.block__header {
    margin: 3px 0 13px 0;
    padding: 5px 10px 5px 12px;
    font-family: sans-serif;
    font-size: 1.08rem;
    line-height: 30px;
    background: none repeat scroll 0 0 #eadbb4;
    border-radius: 3px 3px 3px 3px;
    font-weight: 400;
    white-space: nowrap;
    max-height: 40px;
    overflow: hidden;
}

.wf-active .block__header {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
}

.block__content {
    padding: 10px;
    background: none repeat scroll 0 0 #faf6ed;
    border: 1px solid #eadbb4;
    box-shadow: inset 0 0 1px 0px #eadbb4;
    border-radius: 3px 3px 3px 3px;
}

.block_multivarki > .block__content {
    padding: 10px;
    background: none repeat scroll 0 0 #ffffff;
    border: 1px solid #eadbb4;
}

.block__content > *:first-child :first-child {
    margin-top: 0;
}

.block__content > *:last-child :last-child {
    margin-bottom: 0;
}

.block_sidebar-top > .block__content {
    padding: 10px;
}

.sidebar-top__item {
    display: flex;
}

.sidebar-top__item:not(:first-of-type) {
    padding-top: 0.75em;
}

.sidebar-top__item:not(:last-of-type) {
    padding-bottom: 0.75em;
    border-bottom: 1px dashed #ccbe9b;
}

.sidebar-top__item-image {
    flex: 0 0 auto;
}

.sidebar-top__item-info {
    flex: 1 1 auto;
    font-size: 0.87rem;
}

.sidebar-top__item-image {
    width: 55px;
    height: 55px;
    max-width: 55px;
    max-height: 55px;
    box-shadow: 0 0 0px 1px #d3d3d3;
    border-radius: 2px;
    margin: 0 7px 0 0;
    padding: 0;
}

.sidebar-top__item-image-img {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

.sidebar-top__item-info-link {
    display: block;
}

.sidebar-top__rating-comments {
    display: flex;
    align-items: baseline;
}

.sidebar-top__rating, .sidebar-top__num-comments {
    flex: 0 1 auto;
}

.sidebar-top__rating {
    margin-right: 10px;
}

.sidebar-top__item-price-label {
    color: #808080;
    font-weight: bold;
}

.sidebar-top__item-price-val {
    color: #c04c4c;
    font-weight: bold;
}

/* --- End Block --*/


.main-content li {
    margin-bottom: 0.3rem;
}


/* --- Streamfield Blocks --- */

.stream-block img {
    max-width: 100%;
    height: auto;
}

.stream-paragraph-block .middle-image,
.stream-paragraph-block .big-image,
.stream-paragraph-block .full-image {
    display: block;
    margin: 1em auto;
}

.responsive-object {
    position: relative;
}

.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream-embed-block {
    border: 1px solid #cccccc;
    background-color: #ededed;
    border-radius: 3px;
    padding: 4px;
}

.stream-embed-block__video {
    padding-right: 1px;
}

.stream-embed-block__caption {
    padding: 3px 5px;
    text-align: center;
    font-style: italic;
    background-color: #ededed;
}

.stream-block {
    margin-bottom: 15px;
}

.stream-block p {
    margin-top: 1em;
    margin-bottom: 1em;
}

.main-content .figure img {
    margin-left: auto;
    margin-right: auto;
}

.figure__caption, .embed__caption {
    padding: 3px 0;
    text-align: center;
    font-style: italic;
    background-color: #ededed;
}

.figure_align-colorbox .figure__caption,
.figure_align-left .figure__caption,
.figure_align-right .figure__caption,
.figure_align-center .figure__caption {
    text-align: center;
    padding: 4px 0 0 0;
}

.figure_align-left {
    float: left;
    max-width: 400px;
    padding-right: 7px;
}

.figure_align-right {
    float: right;
    max-width: 400px;
    padding-left: 7px;
}

.figure_align-center {
    text-align: center;
    max-width: 100%;
}

.quote__body {
    position: relative;
    color: #808080;
    font-size: 1rem;
    font-style: normal;
    margin: 0;
    padding: 5px 20px 5px 28px;
}

.quote__body:before, .quote__body:after {
    position: absolute;
    font-family: serif;
    font-size: 3em;
    color: #999999;
}

.quote__body:before {
    content: "\201c";
    top: 10px;
    left: -4px;
}

.quote__body:after {
    content: "\201d";
    bottom: -17px;
    right: 0;
}

.quote__body p:first-of-type {
    margin-top: 0;
}

.quote__body p:last-of-type {
    margin-bottom: 0;
}

.quote__source-text {
    display: block;
    margin-top: 1em;
    font-style: italic;
}

.stream-html-block table.formatted {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dae4b9;
}

.stream-html-block table.formatted th, .stream-html-block table.formatted td {
    border: 1px solid #dae4b9;
    padding: 3px 7px;
    font-size: 1rem;
}

.stream-table-block table {
    width: 100%;
    border: 2px solid #e0e7c8;
    border-collapse: collapse;
}

.stream-table-block td, .stream-table-block th {
    padding: 0.5em;
    font-weight: normal;
    font-size: 1rem;
    text-align: left;
    border: 1px solid #dae4b9;
}

.stream-table-block th {
    font-weight: bold;
}

.stream-table-block caption {
    font-weight: bold;
}

/* --- End Streamfield Blocks --- */


/* --- Colorbox --- */

.gallery__link {
    display: block;
    position: relative;
    padding: 4px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    color: #777777;
    text-decoration: none;
}

.gallery__link:hover {
    border: 1px solid #cc0000;
}

.gallery__link img {
    display: block;
}

.gallery__link:hover:before {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 48px;
    height: 48px;
    background: url("../images/zoom-plus.564b07356de4.png") no-repeat;
}

/* --- Colorbox --- */


/* --- Content --*/

.sidebar1 {
    padding: 15px 0;
}

.sidebar2 {
    padding: 15px 0;
}

.main-content {
    padding: 15px 20px;
    font-size: 1.0666666666666667rem;
    line-height: 23px;
    overflow-wrap: anywhere;
}

.main-content__section {
    margin-bottom: 40px;
}

.main-content__h1 {
    margin: 0 0 26px 0;
    font-size: 2rem;
    font-weight: normal;
    line-height: 3rem;
}

.main-content__section-header {
    margin: 30px 0 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 30px;
}

.main-content__section-header:first-child {
    margin: 0 0 20px 0;
}

.main-content__section-header_inbox {
    padding: 4px 10px;
    background-color: #eeeeee;
    font-family: sans-serif;
    font-size: 1.2rem;
    font-weight: normal;
}

.wf-active .main-content__section-header_inbox {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
}

.stream-paragraph-block h2 {
    margin: 30px 0 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 30px;
}

.stream-paragraph-block p {
    margin: 0 0 18px 0;
}

.stream-paragraph-block ul, .stream-paragraph-block ol {
    margin: 0 0 18px 0;
}

/* --- End Content --*/

/* --- ContentPageList -- */
.content-page-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-page-list__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px dashed #c8c8c8;
}

.content-page-list__item-thumb {
    display: flex;
    flex: 0 0 auto;
    width: 170px;
    height: 110px;
    max-width: 170px;
    min-height: 110px;
    box-sizing: content-box;
    margin: 0 20px 13px 0;
    border: 1px solid #cccccc;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    box-shadow: inset 0 0 1px 4px #ffffff;
}

.content-page-list__item-thumb:hover {
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}

.content-page-list__item-thumb-link {
    display: block;
    flex: 0 0 auto;
    margin: 5px;
    max-width: 160px;
    max-height: 100px;
}

.content-page-list__item-title-and-desc {
    flex: 1 1 220px;
}

.content-page-list__item-desc {
    font-size: 1rem;
    line-height: 1.333rem;
}

.content-page-list__item-title-link {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.266rem;
    text-decoration: none;
    /* border-bottom: 1px dashed #576921; */
}

.content-page-list__item-price {
    flex: 1 1 220px;
    line-height: 1.333rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: #888888;
}

.content-page-list__item-price-val {
    color: #c04c4c;
}




@media only all and (max-width: 1199px) {
    .content__sidebar2 {
        display: none;
    }

    .figure_align-left {
        float: none;
        max-width: 400px;
        padding-right: 0;
        text-align: center;
    }

    .figure_align-right {
        float: none;
        max-width: 400px;
        padding-left: 0;
        text-align: center;
    }
}

@media only all and (max-width: 800px) {
    .content__sidebar1, .content__sidebar2 {
        display: none;
    }

    .logo {
        width: 350px;
        height: 80px;
    }

    .main-content {
        padding: 15px 0 15px 0;
        font-size: 15px;
        line-height: 22px;
    }

    .main-content__h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .main-content .stream-block {
        margin-bottom: 25px;
    }

    .main-content h2 {
        margin: 25px 0 10px 0;
    }
}

@media only all and (max-width: 460px) {
    .logo {
        width: 300px;
        height: 69px;
    }
}

@media only all and (max-width: 330px) {
    .logo {
        width: 250px;
        height: 57px;
    }
}


/*--- Product ---*/

.product__main-image-and-toc {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product__main-image {
    flex: 1 1 100px;
    min-width: 100px;
    max-width: 250px;
    margin-bottom: 1rem;
}

.product__main-image-link {
    display: block;
    padding: 4px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.product__main-image-link:hover {
    border: 1px solid #cc0000;
}

.product__main-image-toc-space {
    flex: 0 1 20px;
}

.product__main-image-img {
    display: block;
    width: 100%;
    height: auto;
}

.product__toc {
    flex: 1 1 auto;
    min-width: 300px;
}

.product__toc-header {
    font-family: sans-serif;
    font-size: 1.24rem;
    font-weight: normal;
}

.wf-active .product__toc-header {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
}

.toc__list {
    list-style: none;
    margin: 0;
    padding-left: 0;
    font-size: 1rem;
}

.main-content__rating {
    margin: 20px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.main-content__rating-label {
    vertical-align: middle;
}

.product__price {
    margin: 20px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.product__price-label {
    font-weight: normal;
}

.product__price-val {
    font-weight: bold;
    color: #cc0000;
}

.product__pluses-and-minuses {
    display: flex;
    flex-wrap: wrap;
}

.pluses {
    flex: 0 1 47%;
    min-width: 300px;
}

.pluses ul {
    list-style-position: outside;
    padding-left: 17px;
    list-style-image: url("../images/list-plus.950d52427677.gif");
}

.product__pluses-and-minuses-space {
    flex: 0 1 4%;
}

.minuses {
    flex: 0 1 47%;
    min-width: 300px;
}

.minuses ul {
    list-style-position: outside;
    padding-left: 17px;
    list-style-image: url("../images/list-minus.e37e5173992a.gif");
}

.pluses__header, .minuses__header {
    margin: 3px 0 13px 0;
    padding: 5px 10px 5px 12px;
    font-size: 1.08rem;
    line-height: 30px;
    background: none repeat scroll 0 0 #eadbb4;
    border-radius: 3px 3px 3px 3px;
    font-family: sans-serif;
    font-weight: 400;
    white-space: nowrap;
    max-height: 40px;
    overflow: hidden;
}

.wf-active .pluses__header, .wf-active .minuses__header {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
}

.pluses__body, .minuses__body {
    font-size: 1rem;
}

.params {
    width: 100%;
    border: 2px solid #dae4b9;
    border-collapse: collapse;
}

.params-caption {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}

.param:nth-child(odd) {
    background-color: #f1f5e4;
}

.param__label, .param__value {
    padding: 0.5em;
    font-weight: normal;
    font-size: 1rem;
    text-align: left;
    border: 1px solid #dae4b9;
}

.param__value {
    width: 50%;
}

.autoprograms {
    width: 100%;
    border: 2px solid #e0e7c8;
    border-collapse: collapse;
}

.autoprograms-caption {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}

.autoprogram__cell, .autoprograms-headers__cell {
    padding: 0.5em;
    font-weight: normal;
    font-size: 1rem;
    text-align: left;
    border: 1px solid #dae4b9;
}

.autoprograms-headers__cell {
    min-width: 320px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: 1px solid #e0e7c8;
    background-color: #e0e7c8;
    font-weight: bold;
}

.autoprograms-headers__name {
    min-width: 12rem;
}

.autoprogram__desc p {
    margin-top: 10px;
    margin-bottom: 0;
}

.autoprogram__temperature, .autoprogram__period {
    background-color: #f1f5e4;
    font-size: 14px;
}

.autoprogram__temperature-label, .autoprogram__period-label {
    /* font-weight: bold; */
}

/*--- end Product ---*/

.public-info {
    font-size: 0.92em;
    color: #898989;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    padding: 3px 0;
}


/* --- SubDirs --- */

.dir-page-list {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
}

.dir-page-list__item {
    display: inline-block;
    margin: 5px;
    padding: 3px 5px;
    border: 1px solid #eadbb4;
    background-color: #faf6ed;
    border-radius: 3px;
}

.dir-page-list__item-link {
    text-decoration: none;
}

/* --- end SubDirs --- */


/* --- Pagination --- */

.pagination-nav {
    text-align: center;
}

.pagination {
    display: flex;
    padding: 0;
    list-style-type: none;
    justify-content: center;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.pagination__item {
    flex: 1 1 auto;
    padding: 3px 7px;
    margin: 0;
}

.pagination__item:not(:last-of-type) {
    border-right: 1px solid #cccccc;
}

.pagination__link {
    display: block;
    text-decoration: none;
}

.pagination__item_disabled {
    color: #a1a1a1;
}

/* --- end Pagination --- */


/* --- Recipes --- */

.recipe__main-image-and-introduction {
    margin-bottom: 20px;
}

.recipe__main-image {
    float: left;
    min-width: 100px;
    max-width: 250px;
    margin: 0 1em 0.5em 0;
}

.recipe__main-image-link {
    display: block;
    padding: 4px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.recipe__main-image-link:hover {
    border: 1px solid #cc0000;
}

.recipe__main-image-img {
    display: block;
    width: 100%;
    height: auto;
}

.recipe__introduction {
    min-width: 300px;
}

.recipe__main-image-and-introduction:after {
    content: "";
    display: block;
    clear: both;
}

@media only all and (max-width: 520px) {
    .recipe__main-image {
        min-width: 100px;
        max-width: 120px;
        margin: 0 0.5em 0.5em 0;
    }
}

.ingredients-caption {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}

.ingredients {
    width: 100%;
    border: 2px solid #dae4b9;
    border-collapse: collapse;
}

.ingredient__cell {
    padding: 0.5em;
    font-weight: normal;
    font-size: 1rem;
    text-align: left;
    border: 1px solid #dae4b9;
}

.ingredient:nth-child(odd) {
    background-color: #f1f5e4;
}

/* --- end Recipes --- */


/* --- BaseContent --- */

.base-content__main-image-and-introduction {
    margin-bottom: 20px;
}

.base-content__main-image {
    float: left;
    min-width: 100px;
    max-width: 250px;
    margin: 0 1em 0.5em 0;
}

.base-content__main-image-link {
    display: block;
    padding: 4px;
    border: 1px solid #cccccc;
    border-radius: 3px;
}

.base-content__main-image-link:hover {
    border: 1px solid #cc0000;
}

.base-content__main-image-img {
    display: block;
    width: 100%;
    height: auto;
}

.base-content__introduction {
    min-width: 300px;
}

.base-content__main-image-and-introduction:after {
    content: "";
    display: block;
    clear: both;
}

/* --- end BaseContent --- */


.ext-link:after,
a[rel=nofollow]:after {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 3px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABmJLR0QAdgCKADhLcYjYAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH5QESFRk45MLmKAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAZUlEQVQY042QwQ3AMAgDAWWjeCfPxE4wE31Fommq1k/rhG1UNrl7yZciok6gu5d1A4C+XR0nc875SDMREZJKUhcEQPca1nt0KDNv40aPy0zpEEmNiAKg1ocseNXoA8dp9Unj75MvLv4/3yrLdyMAAAAASUVORK5CYII=") no-repeat;
}

/*--- Adaptive Tables --*/
.adaptive-table-outer {
    overflow: auto;
    position: relative;
}
.adaptive-table-inner {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
}
/*--- end Adaptive Tables --*/


/*--- Comments --*/

.comments {
    margin-top: 42px;
}

.comments__comment-add {
    margin: 15px 0 25px 0;
}

.comment {
    margin-bottom: 25px;
    border: 2px solid #f3ebd9;
    background-color: #faf6ed;
}

.comment__level_1 {
    margin-left: 0;
}

.comment__level_2 {
    margin-left: 7%;
}

.comment__level_3 {
    margin-left: 14%;
}

.comment__level_4 {
    margin-left: 21%;
}

.comment__level_5 {
    margin-left: 28%;
}

.comment__level_6 {
    margin-left: 35%;
}

.comment__level_7 {
    margin-left: 42%;
}

.comment__public-info {
    font-size: 0.92rem;
    color: #898989;
    padding: 1px 10px;
}

.comment__author {
    font-weight: bold;
}

.comment__rating-stars {
    padding: 1px 10px;
}

.comment__body {
    padding: 1px 10px;
    font-size: 1rem;
}

.comment__body p:last-of-type {
    margin-bottom: 0;
}

.comment__actions {
    font-size: 0.92rem;
    background-color: #f3ebd9;
    border-top: 1px solid #eadbb4;
    padding: 1px 10px;
    margin-top: 0.5rem;
}

a.comment__reply-link:link, a.comment__reply-link:visited, a.comment__reply-link:active {
    text-decoration: none;
}

.comment-form label, .comment-form input, .comment-form span {
    display: block;
}

.comment-form input[type=text] {
    width: 100%;
    padding: 5px 7px;
    border: 1px solid #bcbcbc;
    border-radius: 4px;
}

.comment-form select {
    width: 100%;
    padding: 5px 7px;
    background-color: #ffe7e7;
    border: 1px solid #cebaba;
    border-radius: 4px;
}

.comment-form .sceditor-container {
    border: 1px solid #bcbcbc;
}

.comment-form .helptext {
    font-size: 0.85em;
    font-style: italic;
    color: #999999;
}

.comment-form input[type=file] {
    width: 100%;
    padding: 5px 7px;
    border: 1px solid #bcbcbc;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.comment-form__desc {
    color: #7a7a7a;
    font-style: italic;
}

.comment_add {
    padding: 5px;
    border: 1px solid #bcbcbc;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.comment__gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0 0 0;
    padding: 1px 10px;
}

.comment__photo {
    margin: 0 0 7px 0;
    padding: 0;
    list-style: none;
}

.comment__photo:not(:last-of-type) {
    margin-right: 7px;
}

.comment__photo-img {
    max-width: 90px;
    max-height: 90px;
}

/*--- end Comments --*/

.message {
    margin-bottom: 1em;
    padding: 10px;
    border: 1px solid #bcbcbc;
    border-radius: 4px;
    background-color: #f8f8f8;
}

.message.success {
    border: 1px solid #e0e7c8;
    background-color: #e0e7c8;
}

/* --- rating stars --- */

.rating-stars {
    display: inline-block;
    width: 100px;
    height: 1em;
    position: relative;
}

.rating-stars_small {
    width: 70px;
}

.rating-stars_very-small {
    width: 50px;
}

.rating-stars__0, .rating-stars__5 {
    position: absolute;
    width: 100%;
}

.rating-stars__0 img, .rating-stars__5 img {
    width: 100px;
    height: auto;
}

.rating-stars_small .rating-stars__0 img,
.rating-stars_small .rating-stars__5 img {
    width: 70px;
}

.rating-stars_very-small .rating-stars__0 img,
.rating-stars_very-small .rating-stars__5 img {
    width: 50px;
}

.rating-stars__0 img {
    opacity: 0.65;
}

.rating-stars__5 {
    overflow: hidden;
    width: 100%;
    display: none;
}

/* --- end rating stars --- */


.num-comments {
    color: #787878;
    font-size: 0.9em;
}

.comment-icon {
    height: 1em;
    width: 1em;
    vertical-align: middle;
    opacity: 0.5;
}


/*--- HomePage ---*/

.home .breadcrumbs-nav-wrap {
    display: none;
}

.home .top-nav-wrap {
    border-radius: 5px;
}

.home__top1 {
    margin: 3px 0 40px 0;
    padding: 5px;
    /* background: none repeat scroll 0 0 #f5f5f5; */
    border: 2px solid #e1e1e1;
    /* box-shadow: inset 0 0 1px 0px #f5f5f5; */
    border-radius: 3px 3px 3px 3px;
}

.home__top1-image {
    width: 100%;
}

.home__top1-image-link {
    position: relative;
    display: block;
    margin: 15px;
    border-radius: 3px;
    /* box-shadow: 0 0 10px 0 #dddddd; */
}

.home__top1-image-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.home__top1-image-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px 0px #dddddd;
    border: 1px solid #dbdbdb;
}

.home__top1-info {
    margin: 15px;
}

.home__top1-link {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 0.87rem;
}

.home__top1-link svg {
    vertical-align: text-top;
    color: #c04c4c;
}

.home__top1-preview {
}

@media only all and (max-width: 520px) {
    .home__top1 {
        padding: 0;
    }

    .home__top1-link {
        font-size: 1.25rem;
    }
}

.home__h1 {
    font-weight: normal;
    border-radius: 3px 3px 3px 3px;
    margin: 0 0 11px;
    text-transform: uppercase;
}

.home__section-header {
    background-color: #e7edd5;
    border-radius: 3px 3px 3px 3px;
    font-family: sans-serif;
    font-size: 0.965rem;
    margin: 0 0 19px;
    padding: 5px 10px;
    text-transform: uppercase;
}

.wf-active .home__section-header {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1333rem;
}

.home-section__item-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -1rem;
}

.home-section__item {
    flex: 1 1 33%;
}

.home-section__item {
    padding-right: 1rem;
    margin-bottom: 30px;
}

.home-section__item-image {
    display: block;
    min-width: 220px;
    max-width: 360px;
    margin: 0 auto 0.6rem auto;
    padding: 5px;
    border: 1px solid #cdd3be;
    box-shadow: inset 0 0 7px 0px #d1d7c0;
    border-radius: 3px;

}

.home-section__item-image-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.home-section__item-link {
    display: block;
    margin-bottom: 0.25rem;
    text-decoration: none;
}

.home-section__item-preview {
    font-size: 0.9rem;
    line-height: 1.3rem;
}

.home-section_new-recipes .home-section__item-list {
    flex-direction: column;
}

.home-section_new-recipes .home-section__item {
    flex: 1 1 auto;
}

.home-section_new-recipes .home-section__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    padding-right: 0;
}

.home-section_new-recipes .home-section__item-image {
    flex: 1 1 auto;
    margin: 0 1rem 1rem 0;
}

.home-section_new-recipes .home-section__item-info {
    flex: 1 1 220px;
    margin-right: 1rem;
}

.home-section_new-recipes .home-section__item-link {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.home-section_new-recipes .home-section__item-preview {
    font-size: 1rem;
}

.home-section_new-accessories-articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin-right: -1rem;
}

.home-section_new-accessories {
    flex: 1 1 50%;
    padding-right: 1rem;
}

.home-section_new-articles {
    flex: 1 1 50%;
    padding-right: 1rem;
}

/*--- end HomePage ---*/


/*--- SearchPage ---*/

.search-form {
    margin-bottom: 2em;
}

.search-form__query {
    display: block;
    width: 100%;
    padding: 5px 7px;
    margin-bottom: 1em;
}

.search-form__submit {
    display: block;
    width: 100px;
    padding: 5px 7px;
    margin-bottom: 1em;
}

/*--- end SearchPage ---*/


/*--- Footer ---*/

.footer-wrap {
    background-color: #768a38;
    background-image: linear-gradient(to bottom,#809b2f,#576921);
    border-radius: 5px;
}

.footer {
    padding: 20px;
    text-align: center;
    color: #ffffff;
}

.footer a:link, .footer a:visited, .footer a:active, .footer li a.active {
    color: #ffffff;
}

.footer a:hover {
    color: #ffffff;
}

.bottom-nav .menu_horizontal {
    justify-content: center;
}

.footer__copyright {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.65;
}

/*--- end Footer ---*/


/*--- Remove radius from header and footer ---*/
@media only all and (max-width: 800px) {
    .top-nav-wrap, .breadcrumbs-nav-wrap, .home .top-nav-wrap, .footer-wrap {
        border-radius: 0;
        margin-left: -10px;
        margin-right: -10px;
    }
}
/*--- end Remove radius ---*/


.social-icons {
    min-height: 48px;
    margin-top: 2.5rem;
}