  .NyBigBox {
    overflow: visible;
  }

  .Box1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .Box1 .ProductBox {
    width: 75%;
  }

  .ProductBox {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px 30px;
  }

  .ProductItem {
    background: #cfbd9a;
  }

  .ProductImg {
    width: 100%;
  }

  .ProductText {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-gap: 10px;
  }

  .ProductText h1 {
    font-size: 18px;
    color: #000;
  }

  .ProductText h2 {
    font-size: 12px;
    color: #666;
  }

  .ProductTagsBox {
    position: sticky;
    top: 100px;
    width: calc(25% - 30px);
    padding: 20px 10px;
    background-color: #fff;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }


  .TagsBox .TagsText {
    font-size: 16px;
    color: var(--color);
    margin-bottom: 10px;
  }

  .word_search {
    border: 1px #eee solid;
    padding: 10px 5px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 10px;
  }

  .word_search a {
    color: #000;
    font-size: 14px;
    text-align: center;
  }

  .word_search a:hover {
    color: var(--color);
  }


  .TagsBox01 {
    margin-bottom: 30px;
  }

  .fui-input {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px;
  }



  .fui-select {
    width: 100%;
    cursor: pointer;
    position: relative;
    user-select: none;
    color: #666;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #eee;
  }


  .fui-select:after {
    display: block;
    content: '▲';
    position: absolute;
    right: 10px;
    top: calc(50% - 11px);
    transform: rotate(180deg);
    color: #c8a17c;

  }

  .fui-select .Tags {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eee;
    z-index: 99;
    max-height: 350px;
    overflow-y: auto;
  }

  .fui-select .Tags li {
    padding: 5px 10px;
    transition: all .5s;
  }

  .fui-select .Tags li a {
    font-size: 14px;
    color: #ccc;
  }

  .fui-select .Tags li:hover {
    background-color: #eee;
  }

  .fui-select .Tags li a.active {
    color: var(--color);
  }

  .TagsSearch {
    margin-top: 30px;
  }

  .TagsSearch .searchInput {
    display: block;
    width: 100%;
    height: 34px;
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 14px;
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    margin-bottom: 15px;
  }

  .TagsSearch .subButn {
    width: 100% !important;
    background: var(--color);
    width: auto;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    border: none;
    padding: 7px 25px;
    border-radius: 3px;
    transition: all 0.3s ease-out;
  }

  .TagsSearch .subButn:hover {
    background: #333;
  }

  .BackSelection {
    width: 100% !important;
    border: 1px solid var(--color);
    width: auto;
    display: inline-block;
    color: var(--color);
    cursor: pointer;
    padding: 7px 25px;
    border-radius: 3px;
    text-align: center;
    transition: all 0.3s ease-out;
  }

  .BackSelection:hover {
    background: var(--color);
    color: #fff;
    

  }

  @media (max-width: 1200px) {
    .Box1 .ProductBox {
      width: calc(100% - 270px);
    }

    .ProductTagsBox {
      width: 240px;
    }
  }

  @media (max-width: 800px) {
    .Box1 {
      display: flex;
      flex-direction: column-reverse;
      grid-gap: 45px;
    }

    .Box1 .ProductBox {
      width: 100%;
    }

    .ProductTagsBox {
      width: 100%;
      position: relative;
      top: 0;
    }

    .ProductBox {
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 45px 20px;
    }
  }

  @media (max-width: 400px) {
    .ProductBox {
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 30px;
    }
  }