.develux-wrapper-bulk-editor{
  padding: 15px 0;
  .develux-wrapper-taxonomies{
    display: flex;
    justify-content: space-between;
    .develux-categories-box, .develux-tags-box{
      padding: 0;
      width: 49%;
      height: 440px;
      position: relative;
      box-sizing: border-box;

      .taxonomy-list-box{
        border-left:1px solid #e2e2e2;
        border-right:1px solid #e2e2e2;
        border-bottom:1px solid #e2e2e2;
        min-height: 300px;
        height:400px;
        overflow-y: auto;
      }
    }
  }
  .develux-wrapper-search-product{
    display: flex;
    justify-content: space-between;
    .develux-include-box, .develux-exclude-box{
      background-color: #f7f7f7;
      padding: 0px;
      width: 49%;
      height: auto;
      overflow-y: auto;
      overflow-x: hidden;
      position: relative;
      box-sizing: border-box;
    }
  }

  .develux-bulk-action-title{
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
  }
  .hr{
    margin: 35px 0;
    height:1px;
  }
  .develux-cat-row{
    display: grid;
    grid-template-columns: 6% 16% 47% 32%;
    padding: 10px;
    border-bottom: 1px solid #e2e2e2;
    align-items: center;
    background: #fff;
    &:nth-child(odd){
      background: #f7f7f7;
    }
  }
  .develux-tag-row{
    display: grid;
    grid-template-columns: 6% 16% 47% 32%;;
    padding: 27px 10px;
    border-bottom: 1px solid #e2e2e2;
    align-items: center;
    background: #fff;
    &:nth-child(odd){
      background: #f7f7f7;
    }
  }
  .develux-woo-tag-list{
    .develux-tag-row{
      grid-template-columns: 6% 54% 32%;
    }
  }

  .develux-cat-row-header, .develux-tag-row-header{
    background-color: #fff;
    padding: 10px;
    border: 1px solid #e2e2e2;
    &:nth-child(odd){
      background: #fff;
    }
    p{
      color:$brand;
    }
  }

  .develux-tag-row-header{
    grid-template-columns: 6% 74% 20%;
  }
  p{
    margin: 0;
    padding: 0;
  }
  .develux-wrapper-search-product{
    .develux-search-input-wrapper{
      display: flex;
      max-width: 100%;
      border: 1px solid #D6D6D6;
      border-radius: 8px;
      background: #fff;
      padding: 3px 5px;
      justify-content: space-between;
      #develux-search-include-product, #develux-search-exclude-product{
        border: 0 !important;
        border-color: #fff;
        width: 93%;
      }
      #develux-search-include-product::placeholder, #develux-search-exclude-product::placeholder{
        color: #B3B3B3;
      }
    }
  }
  .develux-product-search-result{
    position: absolute;
    width: calc(100% - 30px);
    height: auto;
    max-height: 300px;
    overflow-y: auto;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ececec;
    display: none;
  }
  .develux-included-product-box, .develux-included-product-box:hover{
    background: #f7fff7;
  }
  .develux-found-product-wrapper:hover{
    background: #fbfbfb;
    border-radius: 3px;
  }
  .develux-found-product-wrapper{
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid lightgray;
    .develux-found-product-item{
      padding: 5px 0;
      margin: 5px 0;

      display: flex;
      align-items: center;
      img{
        margin-right: 10px;
        border-radius: 4px;
      }
    }
    .develux-add-product-to-include{
      .develux-included-product{
        background-color: #7bcb7b;
        border: 0;
        color: #fff;
        padding: 6px 6px;
        border-radius: 3px;
        user-select: none;
      }
      .develux-action-remove-product-from-included, .develux-action-remove-product-from-excluded{
        user-select: none;
        background-color: #fe2c2c;
        border: 0;
        color: #fff;
        padding: 6px 6px;
        border-radius: 3px;
      }
      .develux-action-remove-product-from-included:hover, .develux-action-remove-product-from-excluded:hover{
        cursor: pointer;
        background-color: #de1c1c;
      }
      .develux-action-add-product-to-include, .develux-action-add-product-to-exclude{
        background-color: $brand;
        border: 0;
        color: #fff;
        padding: 6px 6px;
        border-radius: 3px;
      }
      .develux-action-add-product-to-include:hover, .develux-action-add-product-to-exclude:hover{
        cursor: pointer;
        background-color: $brand;
      }
    }
  }
}
.develux-items-line{
  display: flex;
  align-items: center;
}
.develux-hide-search-result, .develux-hide-search-result-exclude{
  cursor: pointer;
}
.develux-hide-dynamic-item{
  display: none !important;
}
@media screen and (max-width: 1100px) {
  .develux-wrapper-bulk-editor {

    .develux-wrapper-taxonomies {
      flex-direction: column;
      gap:30px;
      .develux-categories-box, .develux-tags-box {
        width: 100%;
        margin-bottom: 25px;
      }
    }

    .develux-wrapper-search-product{
      flex-direction: column;
      .develux-include-box, .develux-exclude-box{
        width: 100%;
        margin-bottom: 25px;
      }
    }

    .hr{
      display: none;
    }
  }
}
#develux_label_relations{
  padding-top:10px;
}
.develux-cat-image{
  object-fit:contain;
}
.develux-found-product-item{
  img{
    object-fit:contain;
  }
}