/* c-categoryss
---------------------------------------------------------------*/
.c-categoryss {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-categoryss__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .c-categoryss__item {
    margin-top: 10px;
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
  }
  .c-categoryss__item:nth-of-type(2n + 1) {
    margin-right: 10px;
  }
  .c-categoryss__item:nth-of-type(-n + 2) {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 989px) {
  .c-categoryss__item {
    margin-top: 16px;
    width: -webkit-calc(33.333333333333336% - 10.666666666666666px);
    width: calc(33.333333333333336% - 10.666666666666666px);
  }
  .c-categoryss__item:nth-of-type(3n + 1) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(3n + 2) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(-n + 3) {
    margin-top: 0;
  }
}
@media (min-width: 990px) and (max-width: 1024px) {
  .c-categoryss__item {
    margin-top: 16px;
    width: -webkit-calc(25% - 12px);
    width: calc(25% - 12px);
  }
  .c-categoryss__item:nth-of-type(4n + 1) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(4n + 2) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(4n + 3) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(-n + 4) {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .c-categoryss__item {
    margin-top: 16px;
    width: -webkit-calc(20% - 12.8px);
    width: calc(20% - 12.8px);
  }
  .c-categoryss__item:nth-of-type(5n + 1) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(5n + 2) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(5n + 3) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(5n + 4) {
    margin-right: 16px;
  }
  .c-categoryss__item:nth-of-type(-n + 5) {
    margin-top: 0;
  }
  .c-categoryss__item:hover {
    z-index: 9;
    -webkit-box-shadow: 0 0 16px 16px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 16px 16px rgba(0, 0, 0, 0.2);
  }
  .c-categoryss__item:hover:before {
    display: block;
  }
  .c-categoryss__item:hover .c-categoryss__level--1 {
    -webkit-box-shadow: 0 0 0 16px #ffffff;
            box-shadow: 0 0 0 16px #ffffff;
  }
  .c-categoryss__item:hover .c-categoryss__dropdown {
    display: block;
    -webkit-box-shadow: 0 -16px 0 16px #ffffff, 0 0 16px 16px rgba(0, 0, 0, 0.2);
            box-shadow: 0 -16px 0 16px #ffffff, 0 0 16px 16px rgba(0, 0, 0, 0.2);
  }
}
.c-categoryss__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .c-categoryss__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-categoryss__row + .c-categoryss__row {
  padding-top: 16px;
}
.c-categoryss__level {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: inherit;
  position: relative;
}
.c-categoryss__level--1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  padding: 10px;
}
.c-categoryss__level--1 .c-categoryss__name {
  font-weight: 600;
  text-align: center;
}
.c-categoryss__level--1 .c-categoryss__count {
  font-weight: 600;
}
.c-categoryss__level--2,
.c-categoryss__level--3 {
  font-size: 13px;
  padding: 6px 0;
  line-height: 1.2;
}
.c-categoryss__level--2 {
  border-top: 1px dotted #dadada;
}
.c-categoryss__level--3 {
  color: #777777;
  padding-left: 16px;
}
.c-categoryss__level:hover .c-categoryss__name {
  text-decoration: underline;
}
.c-categoryss__dropdown {
  left: 0;
  right: 0;
  top: 100%;
  padding: 16px;
  position: absolute;
  background: #ffffff;
  display: none;
}
.c-categoryss__dropdown--parent {
  margin-bottom: 10px;
}
.c-categoryss__img {
  width: 100%;
  height: 130px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .c-categoryss__img {
    height: 70px;
  }
}
.c-categoryss__img img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.c-categoryss__name {
  line-height: 1.2;
}
@media (max-width: 767px) {
  .c-categoryss__name {
    font-size: 13px;
  }
}
.c-categoryss__count {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #777777;
  margin-left: 6px;
}
@media (max-width: 767px) {
  .c-categoryss__count {
    margin-left: 0;
    margin-top: 6px;
    font-size: 13px;
  }
}



