/*** Мобильное меню каталога ***/
.cd-accordion-menu {
  width: 100%;
}
.cd-accordion-menu ul {
  /* by default hide all sub menus */
  display: none;
  margin: 0 !important;
}
.cd-accordion-menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  list-style: none !important;
  background: none !important;
  padding: 0 !important;
}
.cd-accordion-menu input[type=checkbox] {
  /* hide native checkbox */
  opacity: 0;
  display: none;
}
.cd-accordion-menu label {
    background-color: #2E8036;
    background-position: 50% 0;
    background-repeat: no-repeat;
    color: #fff;
    cursor: pointer;
    display: block;
    font: 20px 'Bebas Neue Regular';
    height: 86px;
    line-height: 86px;
    text-align: center;
    text-shadow: 0px 0px 15.68px rgba(0, 0, 0, 0.75);
    text-transform: uppercase;
        margin-bottom: 5px;
}
.cd-accordion-menu > li.bg1 > label {
    background-image: url('bg1.png');
}
.cd-accordion-menu > li.bg2 > label {
    background-image: url('bg2.png');
}
.cd-accordion-menu > li.bg3 > label {
    background-image: url('bg3.png');
}
.cd-accordion-menu > li.bg4 > label {
    background-image: url('bg4.png');
}
.cd-accordion-menu > li.bg5 > label {
    background-image: url('bg5.png');
}

.cd-accordion-menu label {
  cursor: pointer;
}

.cd-accordion-menu input[type=checkbox]:checked + label::before {
  /* rotate arrow */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu input[type=checkbox]:checked + label::after {
  /* show open folder icon if item is checked */
  background-position: -32px 0;
}
.cd-accordion-menu input[type=checkbox]:checked + label + ul,
.cd-accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
  /* use label:nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
  /* show children when item is checked */
  display: block;
}
.no-touch .cd-accordion-menu ul label:hover, .no-touch
.cd-accordion-menu ul a:hover {
  background: #3c3f45;
}
.cd-accordion-menu > li:last-of-type > label,
.cd-accordion-menu > li:last-of-type > a,
.cd-accordion-menu > li > ul > li:last-of-type label,
.cd-accordion-menu > li > ul > li:last-of-type a {
  box-shadow: none;
}

.cd-accordion-menu ul label,
.cd-accordion-menu ul ul label {
    background: url('arrow.png') no-repeat 100% 50% #2E8036;
    color: #fff;
    font: 20px 'Bebas Neue Regular';
    display: table;
    width: 100%;
    padding: 0 18px;
    text-align: left;
    text-decoration: none;
    text-shadow: none;
        margin-bottom: 5px;
}

.cd-accordion-menu > li > ul > li > label {
  font-weight: bold;
}


.cd-accordion-menu ul label::before {
  left: 36px;
}
.cd-accordion-menu ul label::after,
.cd-accordion-menu ul a::after {
  left: 59px;
}

.cd-accordion-menu ul ul label::before {
  left: 54px;
}
.cd-accordion-menu ul ul label::after,
.cd-accordion-menu ul ul a::after {
  left: 77px;
}

.cd-accordion-menu ul ul ul label::before {
  left: 72px;
}
.cd-accordion-menu ul ul ul label::after,
.cd-accordion-menu ul ul ul a::after {
  left: 95px;
}

.cd-accordion-menu.animated label::before {
  /* this class is used if you're using jquery to animate the accordion */
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}

/*------------------------------------------------------------------------------------------*/

ul > li > ul > li .label_in {
  display: table-cell;
  vertical-align: middle;
}

.wds_mobile_item {
  clear: both;
  background: #F1F1F1 !important;
  margin-top: 18px !important;
  padding: 10px !important;
  position: relative;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
}

.wds_mobile_item_left {
    background: #fff;
    min-height: 134px;
    padding: 10px;
    text-align: center;
    width: 40%;
    float: left;
    margin-right: 20px;
}
.wds_mobile_item_left img {
  max-width: 100%;
  border: 0 none;
}

.wds_mobile_item_name a {
  font-size: 14px;
  line-height: 22px;
  white-space: normal;
}

.wds_mobile_item_price {
    background: url('price.png') no-repeat 10px 50%;
    bottom: 18px;
    font-size: 16px;
    font-weight: 600;
    left: 40%;
    padding-left: 40px;
    position: absolute;
    width: 59%;
}