/****************************
  fixed_category_menu
****************************/
.fixed_category_menu {
  position: fixed;
  right: 0;
  top: -9999px;
  width: 100%;
  height: 100vh;
  z-index: 120;
  overflow: auto;
  background: #fff;
  padding: 30px;
  transition: 2s all;
}
.fixed_category_menu.on {
  top: 0;
  transition: 1s all;
}
.fixed_category_menu .mb {
  margin-bottom: 30px;
}
.fixed_category_menu .item-box {
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 120;
}
.fixed_category_menu .item-box:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 121;
}
.fixed_category_menu .item-box a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 130;
  text-decoration: none;
}
.fixed_category_menu .item-box a span {
  display: block;
  text-align: center;
  color: #fff;
}
.fixed_category_menu .item-box a span:nth-of-type(1) {
  display: block;
  font-size: 16px;
}
.fixed_category_menu .item-box a span:nth-of-type(2) {
  display: block;
  font-size: 12px;
}
.fixed_category_menu #item-category-curtain {
  background: url("../../images/top/curtain.jpg");
  background-size: cover;
  background-position: center;
}
.fixed_category_menu #item-category-lace {
  background: url("../../images/top/lacecurtain.jpg");
  background-size: cover;
  background-position: center;
}
.fixed_category_menu #item-category-blind {
  background: url("../../images/top/blind.jpg");
  background-size: cover;
  background-position: center;
}
.fixed_category_menu #item-category-rug {
  background: url("../../images/top/rug.jpeg");
  background-size: cover;
  background-position: center;
}
.fixed_category_menu #item-category-tassel {
  background: url("../../images/top/tassel.jpg");
  background-size: cover;
  background-position: center;
}
.fixed_category_menu #item-category-woodshutter {
  background: url("../../images/top/woodshutter.jpg");
  background-size: cover;
  background-position: center;
}
.fixed_category_menu .link {
  text-align: center;
  margin-top: 50px;
}
.fixed_category_menu .link a {
  display: inline-block;
  width: 300px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
}
.fixed_category_menu .category-title {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}
.fixed_category_menu .close_btn {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #000;
  cursor: pointer;
}
