/* [project]/src/app/components/themeLayout/components/header/index.css [app-client] (css) */
.header {
  background: var(--darkCharcoal);
  justify-content: space-between;
  width: 100vw;
  height: 85px;
  display: flex;
}

.header .company_logo {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 100%;
  padding: 10px;
  display: flex;
}

.header .nav_bar {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  display: flex;
}

.header .nav_bar_left {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  display: flex;
}

.header .nav_bar_left .search_input_wrapper {
  background-color: var(--quartz);
  border-radius: 50px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.header .nav_bar_left .search_input_wrapper input {
  width: 270px;
  height: 56px;
  font-size: 18px;
}

.search_input_wrapper .clear_text_search_icon {
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.search_input_wrapper .searched_image_display_wrapper {
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  width: auto;
  max-width: 150px;
  height: 50px;
  padding: 4px 0;
  display: flex;
  position: absolute;
  top: 3px;
  left: 15px;
}

.searched_image_display_wrapper .searched_image {
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 6px;
  width: auto !important;
  max-width: 120px !important;
  height: 100% !important;
}

.searched_image_display_wrapper .clear_image_search_icon svg path {
  fill: var(--orange);
}

.history_search_svg_icon, .catalouge_search_svg_icon, .user_search_svg_icon {
  cursor: default !important;
}

.header .nav_bar_left .filter_wrapper {
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  display: flex;
}

.header .nav_bar_left .filter_wrapper .filter_svg_icon.active {
  background-color: var(--orange) !important;
  box-shadow: var(--boxShadow2) !important;
}

.header .nav_bar_left .filter_wrapper .filter_svg_icon.active svg path {
  fill: var(--white);
}

.header .nav_bar_left .applyed_filtes_list {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  height: 100%;
  display: flex;
  overflow-y: auto;
}

.header .nav_bar_left .applyed_filtes_list::-webkit-scrollbar {
  display: none;
}

.header .nav_bar_left .applyed_filtes_list .applyed_filter_item {
  border: 1px solid var(--quartz);
  color: var(--white);
  border-radius: 25px;
  align-items: center;
  padding: 0 0 0 6px;
  font-size: 14px;
  display: flex;
}

.header .nav_bar_right {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.header .nav_bar_right .discover_tiles_button {
  border: none !important;
  min-width: 55px !important;
}

.header .nav_bar_right .discover_tiles_button.active {
  background-color: var(--orange) !important;
  box-shadow: var(--boxShadow2) !important;
}

.header .nav_bar_right .add_tiles_button {
  border: none !important;
}

.header .nav_bar_right .add_tiles_button svg path {
  transition: var(--transition);
}

.header .nav_bar_right .add_tiles_button:hover svg path {
  stroke: var(--white);
}

.header .nav_bar_right .add_tiles_button.disabled {
  opacity: .5;
  cursor: not-allowed;
}

.header .nav_bar_right .bulk_update_action_container .bulkupdate_svg_icon.disabled {
  opacity: .5;
  cursor: not-allowed;
  background-color: var(--quartz) !important;
}

.header .nav_bar_right .total_stock_count {
  border: 1px solid var(--lightSilver);
  white-space: nowrap;
  border-radius: 30px;
  padding: 13px 20px;
}

.header .nav_bar_right .pdf_switch_container {
  background-color: var(--quartz);
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 12px;
  display: flex;
}

.group_svg_icon.active_group_svg_icon, .spiltpoint_svg_icon.active_spiltpoint, .header .nav_bar_right .notification_icon_wrapper .notification_svg_icon.active {
  background-color: var(--orange);
}

.nav_bar_right .bulk_update_action_container {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}


/* [project]/src/app/components/themeLayout/components/notificationModal/index.css [app-client] (css) */
.notification_container {
  max-height: 300px;
  margin: 20px 0 20px 20px;
  overflow-y: auto;
}

.notification_container .notification_list {
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  display: flex;
}

.notification_container .notification_list.unread {
  cursor: pointer;
  font-weight: bold;
}

.notification_container .notification_date {
  color: var(--white);
  padding: 0 4px;
  font-size: 16px;
  font-weight: bolder !important;
}

.notification_container .notification_date:not(:first-child) {
  margin-top: 20px;
}

.notification_container .notification_list .icon_container {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
}

.notification_container .notification_list .message_container {
  width: calc(100% - 90px);
}

.notification_container .notification_list .message_container .upper {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.notification_container .notification_list .message_container .lower {
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  display: flex;
}

.notification_container .notification_list .message_container .lower span:first-child {
  padding-right: 10px;
  position: relative;
}

.notification_container .notification_list .message_container .lower span:first-child:after {
  content: "";
  background-color: var(--lightSilver);
  width: 2px;
  height: 50%;
  position: absolute;
  top: 25%;
  right: -2px;
}

.notification_container .notification_list .message_container .lower span:nth-child(2) {
  padding-left: 10px;
}

.notification_container .notification_list .action_container {
  justify-content: flex-start;
  align-items: center;
  width: 20px;
  display: flex;
}

.notification_container_skeleton {
  max-height: 300px;
  overflow: hidden;
}


/* [project]/src/app/components/customModal/index.css [app-client] (css) */
.custom_modal_container {
  position: relative;
}

.custom_modal_bottom_bar {
  content: "";
  z-index: 1;
  background-color: var(--orange);
  border-radius: 0 0 20px 20px;
  width: 80%;
  height: 10px;
  position: absolute;
  bottom: -10px;
  left: 10%;
}

.custom_modal_header {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: -84px;
  display: flex;
  position: relative;
}

.custom_modal_header .icon_wrapper {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.custom_modal_header .icon_wrapper .icon_box {
  justify-content: center;
  display: flex;
  position: absolute;
  align-content: center !important;
}

.custom_modal_header .icon_wrapper .icon_box svg path {
  fill: var(--white);
  stroke: var(--white);
}

.custom_modal_header .close_icon {
  cursor: pointer;
  position: absolute;
  top: 90px;
  right: 5px;
}

.custom_modal_header .heading_text {
  margin-top: 1em;
  font-family: MontserratBold;
  font-size: 25px;
}


/* [project]/src/app/components/themeLayout/components/sidebar/page.css [app-client] (css) */
:root {
  --centralPadding: 15px 22px;
}

.sidebar_container {
  background-color: var(--darkCharcoal);
  flex-direction: column;
  align-items: stretch;
  display: flex;
  overflow-x: hidden;
  padding: 0 !important;
}

.sidebar_container input[type="checkbox"] {
  display: none;
}

.sidebar_container .toggle {
  width: 40px;
  height: 40px;
  padding: 10px;
  position: relative;
}

.sidebar_container .toggle__checkbox {
  position: absolute;
  left: -10000px;
}

.sidebar_container .toggle__button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.sidebar_container .toggle__button span {
  background: var(--white);
  height: 2px;
  transition: var(--transition);
  border-radius: 3px;
  position: absolute;
  left: 0;
  right: 0;
}

.sidebar_container .toggle__button span:first-child {
  top: 0;
}

.sidebar_container .toggle__button span:nth-child(2) {
  top: calc(50% - 1.5px);
}

.sidebar_container .toggle__button span:nth-child(3) {
  top: calc(100% - 2px);
}

.sidebar_container .toggle__checkbox:checked + .toggle__button span:first-child {
  top: calc(50% - 1.5px);
  transform: rotate(45deg);
}

.sidebar_container .toggle__checkbox:checked + .toggle__button span:nth-child(2) {
  opacity: 0;
}

.sidebar_container .toggle__checkbox:checked + .toggle__button span:nth-child(3) {
  top: calc(50% - 1.5px);
  transform: rotate(-45deg);
}

.sidebar_container .toggle__checkbox:focus + .toggle__button {
  outline-offset: 4px;
  outline: 2px dotted;
}

.sidebar_container .sidebar_menu {
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 100%;
  max-height: calc(100% - 140px);
  padding-inline: 15px;
  overflow-y: auto;
}

.sidebar_container .sidebar_menu::-webkit-scrollbar {
  display: none;
}

.sidebar_container .sidebar_menu .sidebar_menu_item {
  position: relative;
}

.sidebar_container .sidebar_menu .sidebar_menu_item .draft_count {
  background-color: var(--orange);
  width: 20px;
  height: 20px;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  top: 0;
  right: -5px;
}

.sidebar_container .sidebar_menu .sidebar_menu_item.active_tab {
  color: var(--orange);
  box-shadow: var(--boxShadow1);
  background: linear-gradient(267.98deg, #42424200 17.8%, #ff903d36 98.3%);
  border-radius: 8px;
  position: relative;
}

.sidebar_container .sidebar_menu .sidebar_menu_item.active_tab .icon_container svg path {
  fill: var(--orange);
  stroke: var(--orange);
}

.sidebar_container .sidebar_menu .sidebar_menu_item.active_tab.active_storke .icon_container {
  stroke-width: 0;
}

.sidebar_container .sidebar_menu .sidebar_menu_item.active_tab:after {
  content: "";
  background-color: var(--orange);
  border-radius: 0 11px 11px 0;
  width: 5px;
  height: 80%;
  position: absolute;
  top: 10%;
  left: -14px;
}

.sidebar_container .bottom_fix_menu {
  padding: 15px;
  position: relative;
}

.sidebar_container .bottom_fix_menu:after {
  content: "";
  background-color: var(--quartz);
  width: calc(100% - 30px);
  height: 2px;
  position: absolute;
  top: 0;
  left: 15px;
}

.sidebar_container .sidebar_menu .sidebar_menu_item, .sidebar_container .bottom_fix_menu .sidebar_menu_item {
  cursor: pointer;
  align-items: center;
  height: 45px;
  padding: 10px 0;
  display: flex;
}

.sidebar_container .sidebar_menu .icon_container, .sidebar_container .bottom_fix_menu .icon_container {
  justify-content: center;
  align-items: center;
  width: 45px;
  display: flex;
}

.sidebar_container .sidebar_menu .title_container {
  transition: var(--transition);
  white-space: nowrap;
  display: none;
  overflow-x: hidden;
}

.sidebar_container .sidebar_menu .title_container.show_title {
  transition: var(--transition);
  display: block;
}

.sidebar_container .sidebar_menu .title_container, .sidebar_container .bottom_fix_menu .title_container {
  white-space: nowrap;
  visibility: hidden;
  transition: var(--transition);
  display: none;
  overflow-x: hidden;
}

.sidebar_container .sidebar_menu .title_container.show_title, .sidebar_container .bottom_fix_menu .title_container.show_title {
  visibility: visible;
  transition-delay: 1s;
  transition: var(--transition);
  display: block;
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item {
  background-color: var(--quartz);
  padding: 10px;
  border-radius: 30px;
  margin-bottom: 10px;
  padding: 10px 0;
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item:last-child {
  margin-bottom: 0;
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item.create_pdf {
  box-shadow: var(--boxShadow1);
  color: var(--orange);
  transition: var(--transition);
  background-color: #0000;
  position: relative;
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item.create_pdf .icon_container svg path {
  transition: var(--transition);
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item.create_pdf.active, .sidebar_container .bottom_fix_menu .sidebar_menu_item.create_pdf:hover {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: var(--boxShadow2);
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item.create_pdf.active .icon_container svg path, .sidebar_container .bottom_fix_menu .sidebar_menu_item.create_pdf:hover .icon_container svg path {
  fill: var(--white);
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item .selected_tiles_badge {
  background-color: var(--charlestonGreen);
  width: max-content;
  min-width: 25px;
  box-shadow: var(--boxShadow5);
  color: var(--white);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 6px;
  font-size: 17px;
  display: flex;
  position: absolute;
  top: -9px;
  right: 0;
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item .selected_tiles_badge.centered {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item.user_profile_item {
  background-color: var(--charlestonGreen);
  box-shadow: var(--boxShadow5);
  text-transform: capitalize;
  cursor: default;
  padding: 5px !important;
}

.sidebar_container .bottom_fix_menu .sidebar_menu_item.user_profile_item .show_title {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-left: 5px;
  overflow: hidden;
}


/* [project]/src/app/components/homePageWrapper/components/tilesDataTableWrapper/components/tilesDataTable/index.css [app-client] (css) */
.tiles_data_table_container {
  width: 100%;
  position: relative;
  overflow-x: auto;
}

.tiles_data_table_container .tilesdata_table_wrapper {
  width: 100%;
  height: calc(100vh - 115px);
  overflow: hidden;
  box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
}

.tilesdata_table_wrapper .ReactVirtualized__Table__headerRow {
  overflow: visible !important;
}

.tilesdata_table_wrapper.edit .ReactVirtualized__Table__headerColumn, .tilesdata_table_wrapper.edit .ReactVirtualized__Table__rowColumn {
  padding: 6px !important;
}

.tilesdata_table_wrapper .available_in_text {
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: normal;
  -webkit-box-orient: vertical;
  max-height: 2.8em;
  line-height: 1.4em;
  display: -webkit-box;
  overflow: hidden;
}

.tilesdata_table_wrapper .tiles_name_column {
  white-space: pre-wrap;
}

.tilesdata_table_wrapper .show_in_pdf_column, .tilesdata_table_wrapper .border_column, .tilesdata_table_wrapper .border_shadow_column, .tilesdata_table_wrapper .background_column, .tilesdata_table_wrapper .active_column, .tilesdata_table_wrapper .private_column {
  justify-content: center !important;
  align-items: center !important;
  display: flex !important;
}

.select_checkbox {
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.image-preview-cell {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-modal {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
}

.tiles_details_input {
  height: 55px;
  box-shadow: var(--boxShadow5);
  border: 1px solid var(--lightSilver) !important;
  border: none !important;
  border-radius: 5px !important;
  width: 100% !important;
}

.tiles_details_input:focus-visible {
  box-shadow: var(--boxShadow5) !important;
}


/* [project]/src/app/components/customDropdown/index.css [app-client] (css) */
.menu_option {
  cursor: pointer;
  width: 55px;
  color: var(--white);
  transition: var(--transition);
  background: none;
  border: none;
  align-items: center;
  font-size: .875rem;
  display: flex;
  position: relative;
  border-radius: 10px !important;
  padding: 20px !important;
}

.label_menu_option {
  width: auto !important;
  padding: 10px 20px !important;
}

.label_menu_option:first-child {
  padding: 15px 20px !important;
}

.label_menu_option:last-child {
  padding: 10px 20px 12px !important;
}

.menu_option {
  border-radius: 0 !important;
}

.menu_option .option_label {
  margin-left: 10px;
}

.menu_option:not(:last-child) {
  margin-bottom: 4px;
}

.menu_option:hover {
  color: var(--lightSilver);
  box-shadow: 0 6px 4px #0000002b;
}

.item_icon {
  display: inline-flex;
}

.custom_dropdown {
  z-index: 10;
  background: var(--darkCharcoal);
  width: auto;
  min-width: 120px;
  max-width: 180px;
  box-shadow: var(--boxShadow1);
  border-radius: 20px;
  height: auto;
  max-height: 200px;
  padding: 8px;
  position: absolute;
  top: 50%;
  right: 90%;
}


/* [project]/src/app/components/homePageWrapper/components/tilesDataTableWrapper/components/MultiActionDropdown/index.css [app-client] (css) */
.tiles_table_sub_dropdown .menu_option::-webkit-scrollbar {
  display: none !important;
}

.tiles_table_main_dropdown .menu_option, .tiles_table_sub_dropdown .menu_option {
  cursor: pointer;
  width: 240px;
  color: var(--white);
  transition: var(--transition);
  background: none;
  border: none;
  align-items: center;
  font-size: .875rem;
  display: flex;
  position: relative;
  border-radius: 0 !important;
  padding: 15px 20px !important;
}

.tiles_table_sub_dropdown .menu_option {
  padding: 10px 20px !important;
}

.tiles_table_main_dropdown .active_option, .tiles_table_main_dropdown .menu_option:hover, .tiles_table_sub_dropdown .active_option, .tiles_table_sub_dropdown .menu_option:hover {
  color: var(--orange);
  position: relative;
  background-color: #0000 !important;
}

.tiles_table_main_dropdown .active_option svg path, .tiles_table_main_dropdown .menu_option svg path, .tiles_table_sub_dropdown .active_option svg path, .tiles_table_sub_dropdown .menu_option svg path {
  transition: var(--transition);
}

.tiles_table_main_dropdown .active_option svg path, .tiles_table_main_dropdown .menu_option:hover svg path, .tiles_table_sub_dropdown .active_option svg path, .tiles_table_sub_dropdown .menu_option:hover svg path {
  fill: var(--orange);
}

.tiles_table_main_dropdown .active_option:before, .tiles_table_sub_dropdown .active_option:before {
  content: "" !important;
  background: var(--orange) !important;
  border-radius: 0 !important;
  width: 5px !important;
  height: 80% !important;
  position: absolute !important;
  top: 10% !important;
  left: 0 !important;
}

.tiles_table_main_dropdown .menu_option .option_label, .tiles_table_sub_dropdown .menu_option .option_label {
  margin-left: 10px;
}

.tiles_table_main_dropdown .menu_option:not(:last-child), .tiles_table_sub_dropdown .menu_option:not(:last-child) {
  margin-bottom: 0;
}

.tiles_table_main_dropdown .menu_option .item_icon, .tiles_table_sub_dropdown .menu_option .item_icon {
  display: inline-flex;
}

.tiles_table_sub_dropdown .sub_dropdownd_button {
  width: 100%;
  display: "flex";
  justify-content: "center";
  align-items: "center";
  text-transform: "capitalize";
  border-radius: 20px;
  padding: 1px;
  height: 40px !important;
  color: var(--orange) !important;
  background-color: var(--white) !important;
  box-shadow: none !important;
}

.tiles_table_sub_dropdown .sub_dropdownd_button svg path {
  fill: var(--orange);
}

.tiles_table_sub_dropdown .more_column_dropdown_button {
  width: 100%;
  height: 40px;
}


/* [project]/src/app/components/customConfirmationModal/index.css [app-client] (css) */
.confirmation_modal_body_wrapper {
  padding: 10px 24px 24px;
}

.confirmation_modal_body_wrapper .titel {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
}

.confirmation_modal_body_wrapper .text_wrapper {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  justify-content: center;
  margin: 20px 0;
  display: flex;
}

.confirmation_modal_body_wrapper .text_wrapper .highlight {
  color: var(--orange) !important;
}

.confirmation_modal_body_wrapper .action_button_container {
  justify-content: center;
  gap: 15px;
  padding: 10px 20px 0;
  display: flex;
}

.confirmation_modal_body_wrapper .action_button_container .confirm_button {
  color: var(--white);
  background-color: var(--charlestonGreen);
  border-radius: 20px;
  width: 100px;
  overflow-x: hidden;
}

.confirmation_modal_body_wrapper .action_button_container .cancle_button {
  width: 100px;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  background-color: #0000;
  border-radius: 20px;
  overflow-x: hidden;
}


/* [project]/src/app/components/homePageWrapper/components/tilesDataTableWrapper/components/tilesDataTable/components/ImageUploadPreviewContainer/index.css [app-client] (css) */
.tile_image_container .file_upload_container {
  border: 2px solid var(--blackOlive);
  border-radius: 5px;
  width: 120px;
  height: 62px;
  position: relative;
}

.tile_image_container .file_upload_container .hidden_input {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.file_upload_overlay {
  cursor: pointer;
  z-index: 1;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.tile_image_container .file_preview_container {
  background: var(--graniteGray);
  border-radius: 5px;
  width: 120px;
  height: 62px;
  position: relative;
}

.tile_image_container .file_preview_container .loader_overlay {
  background: var(--graniteGray);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 62px;
  display: flex;
}

.tile_image_container .file_preview_container .tile_image {
  cursor: pointer;
  object-fit: cover;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: relative;
}

.change_image_button {
  background-color: var(--blackOlive);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  display: flex;
  position: absolute;
  bottom: 3px;
  right: 3px;
}


/* [project]/node_modules/react-image-crop/dist/ReactCrop.css [app-client] (css) */
@keyframes marching-ants {
  0% {
    background-position: 0 0, 0 100%, 0 0, 100% 0;
  }

  to {
    background-position: 20px 0, -20px 100%, 0 -20px, 100% 20px;
  }
}

:root {
  --rc-drag-handle-size: 12px;
  --rc-drag-handle-mobile-size: 24px;
  --rc-drag-handle-bg-colour: #0003;
  --rc-drag-bar-size: 6px;
  --rc-border-color: #ffffffb3;
  --rc-focus-color: #08f;
}

.ReactCrop {
  cursor: crosshair;
  max-width: 100%;
  display: inline-block;
  position: relative;
}

.ReactCrop *, .ReactCrop :before, .ReactCrop :after {
  box-sizing: border-box;
}

.ReactCrop--disabled, .ReactCrop--locked {
  cursor: inherit;
}

.ReactCrop__child-wrapper {
  max-height: inherit;
  overflow: hidden;
}

.ReactCrop__child-wrapper > img, .ReactCrop__child-wrapper > video {
  max-width: 100%;
  max-height: inherit;
  display: block;
}

.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__child-wrapper > img, .ReactCrop:not(.ReactCrop--disabled) .ReactCrop__child-wrapper > video, .ReactCrop:not(.ReactCrop--disabled) .ReactCrop__crop-selection {
  touch-action: none;
}

.ReactCrop__crop-mask {
  pointer-events: none;
  width: calc(100% + .5px);
  height: calc(100% + .5px);
  position: absolute;
  inset: 0;
}

.ReactCrop__crop-selection {
  cursor: move;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(0);
}

.ReactCrop--disabled .ReactCrop__crop-selection {
  cursor: inherit;
}

.ReactCrop--circular-crop .ReactCrop__crop-selection {
  border-radius: 50%;
}

.ReactCrop--circular-crop .ReactCrop__crop-selection:after {
  pointer-events: none;
  content: "";
  border: 1px solid var(--rc-border-color);
  opacity: .3;
  position: absolute;
  inset: -1px;
}

.ReactCrop--no-animate .ReactCrop__crop-selection {
  outline: 1px dashed #fff;
}

.ReactCrop__crop-selection:not(.ReactCrop--no-animate .ReactCrop__crop-selection) {
  color: #fff;
  background-image: linear-gradient(to right, #fff 50%, #444 50%), linear-gradient(to right, #fff 50%, #444 50%), linear-gradient(#fff 50%, #444 50%), linear-gradient(#fff 50%, #444 50%);
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 10px 1px, 10px 1px, 1px 10px, 1px 10px;
  animation: 1s linear infinite marching-ants;
}

.ReactCrop__crop-selection:focus {
  outline: 2px solid var(--rc-focus-color);
  outline-offset: -1px;
}

.ReactCrop--invisible-crop .ReactCrop__crop-mask, .ReactCrop--invisible-crop .ReactCrop__crop-selection {
  display: none;
}

.ReactCrop__rule-of-thirds-vt:before, .ReactCrop__rule-of-thirds-vt:after, .ReactCrop__rule-of-thirds-hz:before, .ReactCrop__rule-of-thirds-hz:after {
  content: "";
  background-color: #fff6;
  display: block;
  position: absolute;
}

.ReactCrop__rule-of-thirds-vt:before, .ReactCrop__rule-of-thirds-vt:after {
  width: 1px;
  height: 100%;
}

.ReactCrop__rule-of-thirds-vt:before {
  left: 33.3333%;
}

.ReactCrop__rule-of-thirds-vt:after {
  left: 66.6667%;
}

.ReactCrop__rule-of-thirds-hz:before, .ReactCrop__rule-of-thirds-hz:after {
  width: 100%;
  height: 1px;
}

.ReactCrop__rule-of-thirds-hz:before {
  top: 33.3333%;
}

.ReactCrop__rule-of-thirds-hz:after {
  top: 66.6667%;
}

.ReactCrop__drag-handle {
  width: var(--rc-drag-handle-size);
  height: var(--rc-drag-handle-size);
  background-color: var(--rc-drag-handle-bg-colour);
  border: 1px solid var(--rc-border-color);
  position: absolute;
}

.ReactCrop__drag-handle:focus {
  background: var(--rc-focus-color);
}

.ReactCrop .ord-nw {
  cursor: nw-resize;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.ReactCrop .ord-n {
  cursor: n-resize;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ReactCrop .ord-ne {
  cursor: ne-resize;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.ReactCrop .ord-e {
  cursor: e-resize;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}

.ReactCrop .ord-se {
  cursor: se-resize;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.ReactCrop .ord-s {
  cursor: s-resize;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.ReactCrop .ord-sw {
  cursor: sw-resize;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.ReactCrop .ord-w {
  cursor: w-resize;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.ReactCrop__disabled .ReactCrop__drag-handle {
  cursor: inherit;
}

.ReactCrop__drag-bar {
  position: absolute;
}

.ReactCrop__drag-bar.ord-n {
  width: 100%;
  height: var(--rc-drag-bar-size);
  top: 0;
  left: 0;
  transform: translateY(-50%);
}

.ReactCrop__drag-bar.ord-e {
  width: var(--rc-drag-bar-size);
  height: 100%;
  top: 0;
  right: 0;
  transform: translate(50%);
}

.ReactCrop__drag-bar.ord-s {
  width: 100%;
  height: var(--rc-drag-bar-size);
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}

.ReactCrop__drag-bar.ord-w {
  width: var(--rc-drag-bar-size);
  height: 100%;
  top: 0;
  left: 0;
  transform: translate(-50%);
}

.ReactCrop--new-crop .ReactCrop__drag-bar, .ReactCrop--new-crop .ReactCrop__drag-handle, .ReactCrop--fixed-aspect .ReactCrop__drag-bar, .ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-n, .ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-e, .ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-s, .ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-w {
  display: none;
}

@media (pointer: coarse) {
  .ReactCrop .ord-n, .ReactCrop .ord-e, .ReactCrop .ord-s, .ReactCrop .ord-w {
    display: none;
  }

  .ReactCrop__drag-handle {
    width: var(--rc-drag-handle-mobile-size);
    height: var(--rc-drag-handle-mobile-size);
  }
}


/* [project]/src/app/components/homePageWrapper/components/tilesDataTableWrapper/components/tilesDataTable/components/videoUploadPreviewContainer/index.css [app-client] (css) */
.tile_video_container {
  width: 100%;
}

.tile_video_container .video_upload_container {
  border: 2px solid var(--blackOlive);
  border-radius: 5px;
  width: 120px;
  height: 62px;
  position: relative;
}

.tile_video_container .video_hidden_input {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video_upload_overlay {
  cursor: pointer;
  z-index: 1;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.tile_video_container .video_preview_container {
  background: var(--graniteGray);
  border-radius: 5px;
  width: 120px;
  height: 62px;
  position: relative;
}

.tile_video_container .video_preview_container .video_element {
  object-fit: contain;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: relative;
}

.change_video_button {
  background-color: var(--blackOlive);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  display: flex;
  position: absolute;
  bottom: 3px;
  right: 3px;
}


/* [project]/src/app/components/homePageWrapper/components/tilesDataTableWrapper/components/tilesDataTableFilter/index.css [app-client] (css) */
.tiles_data_table_filter_page {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: 100%;
  display: flex;
}

.tiles_data_table_filter_page .tiles_data_table_filter_wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  height: calc(100% - 55px);
  display: flex;
  overflow: auto;
}

.tiles_data_table_filter_page .tiles_data_table_filter_wrapper::-webkit-scrollbar {
  display: none;
}

.tiles_data_table_filter_page .tiles_data_table_filter_footer {
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  display: flex;
}

.tiles_data_table_filter_footer .filter_buttons_wrapper {
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  display: flex;
}

.tiles_data_table_filter_footer .clear_filter_button {
  background-color: var(--charlestonGreen);
  color: var(--white);
  border: none;
}


/* [project]/src/app/components/homePageWrapper/components/tilesDataTableWrapper/components/tilesDataTableFilter/component/customtilesDataFilterColumn/index.css [app-client] (css) */
.custom_filter_column {
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: auto;
  height: 100%;
  display: flex;
}

.custom_filter_column .custom_filter_column_heading {
  background-color: var(--darkCharcoal);
  user-select: none;
  width: 100%;
  min-width: 150px;
  height: 51px;
  color: var(--white);
  border-radius: 26.5px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.custom_filter_column_heading .column_heading {
  font-weight: 500;
}

.custom_filter_column .custom_filter_column_body {
  background-color: var(--charlestonGreen);
  border-radius: 26px;
  width: auto;
  min-width: 150px;
  max-width: 100%;
  height: calc(100% - 135px);
  padding: 15px;
  overflow-y: auto;
}

.custom_filter_column .custom_filter_column_body::-webkit-scrollbar {
  display: none;
}

.custom_filter_column .custom_filter_column_footer {
  background-color: var(--charlestonGreen);
  border-radius: 26px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 5px;
  display: flex;
}

.custom_filter_column_footer .filter_action_button {
  padding: 0 !important;
}

.filter_action_cancle {
  transform: rotate(45deg);
  padding: 0 !important;
}

.other_add_filter_option {
  margin-left: 10px !important;
  padding: 0 !important;
}

.filter_execute_wrapper {
  padding: 0 !important;
}

.filter_action_cancle .filter_button_wrapper, .filter_execute_wrapper .filter_button_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.filter_button_wrapper:hover svg path {
  stroke: var(--orange);
}

.filter_action_button .edit_filter_icon, .add_filter_button_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.filter_action_button:hover .edit_filter_icon svg circle {
  stroke: var(--orange);
}

.filter_action_button:hover .edit_filter_icon svg path {
  fill: var(--orange);
}

.filter_action_button:hover .add_filter_button_wrapper svg path, .filter_action_button:hover .add_filter_button_wrapper svg circle {
  stroke: var(--orange);
}

.edit_filter_button_wrapper {
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
}

.filter_option_value {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.loading_row {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.loading_bar {
  width: 100% !important;
}

.edit_mode {
  justify-content: space-between;
  gap: 10px;
}

.filter_option_value .color_dot {
  border-radius: 10px;
  width: 40px;
  height: 15px;
  margin-right: 8px;
  display: inline-block;
}

.custom_filter_column_body .filter_option_row {
  align-items: center;
  width: 100%;
  display: flex;
}

.custom_filter_column_body .filter_option_row:not(:last-child) {
  margin-bottom: 10px;
}

.filter_option_input {
  border-bottom: 1px solid #fff;
  width: 90px;
  max-width: 150px;
  padding: 8px 0;
}

.filter_option_add_input {
  border-bottom: 1px solid #fff;
  width: 120px;
  max-width: 150px;
  padding: 8px 0;
}

.filter_option_add_input::placeholder {
  font-size: 12px;
}

.filter_option_label {
  cursor: pointer;
  font-size: 14px;
}

.switch_option_label {
  text-wrap-mode: nowrap;
}

.filter_option_label.selected {
  color: var(--orange);
  -webkit-user-select: none;
  user-select: none;
}

.delete_icon svg path {
  fill: var(--orange);
}

.action_button_wrapper {
  justify-content: center;
  align-items: center;
  gap: 5px;
  display: flex;
}

.filter_option_row_wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}


/* [project]/src/app/components/customDotsSwitch/index.css [app-client] (css) */
.switch_dots_container {
  background-color: var(--blackOlive);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  display: flex;
}

.switch_dots_container .switch_dot {
  background-color: var(--charlestonGreen);
  cursor: pointer;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.switch_dots_container .switch_dot.active {
  background-color: var(--green);
}

.switch_dots_container .switch_dot.both {
  background-color: var(--orange);
}

.switch_dots_container .switch_dot.inactive {
  background-color: var(--red);
}


/* [project]/src/app/components/customFileUploadModal/index.css [app-client] (css) */
.custom_file_upload_modal {
  justify-content: center;
  align-items: center;
  display: flex;
}

.custom_file_upload_modal .file_upload_modal_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 24px 24px;
  display: flex;
}

.file_upload_modal_wrapper .file_upload_modal_title {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  font-size: 20px;
}

.file_upload_save_button {
  width: 200px !important;
}


/* [project]/src/app/components/fileUploadBoxInput/index.css [app-client] (css) */
.logo_upload_wrapper {
  flex-direction: column;
  width: 50%;
  display: flex;
}

.upload_heading {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: bold;
}

.upload_heading span {
  color: red;
  margin-left: 2px;
}

.logo_upload_wrapper .file_input_wrapper {
  color: #5c5c5c;
  cursor: pointer;
  text-align: center;
  background-color: #0000;
  border: 2px dashed #5c5c5c;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  transition: border-color .3s;
  display: flex;
  position: relative;
}

.file_input_wrapper .file_upload_input {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.accepted_formate_list {
  color: #5c5c5c;
  width: 60%;
}

.file_input_wrapper:hover, .file_input_wrapper:focus, .file_input_wrapper:active {
  border-color: #5c5c5c;
}

.preview_wrapper {
  color: #5c5c5c;
  cursor: pointer;
  text-align: center;
  background-color: #0000;
  border: 2px dashed #5c5c5c;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  padding: 10px;
  transition: border-color .3s;
  display: flex;
  position: relative;
}

.preview_wrapper .preview_image {
  border: 1px solid var(--lightSilver);
  border-radius: 6px;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
}

.remove_icon {
  top: 5px;
  right: 5px;
  background-color: var(--darkCharcoal) !important;
  width: 40px !important;
  height: 40px !important;
  position: absolute !important;
}

.download_icon {
  bottom: 5px;
  right: 5px;
  background-color: var(--darkCharcoal) !important;
  width: 40px !important;
  height: 40px !important;
  position: absolute !important;
}


/* [project]/src/app/components/homePageWrapper/components/tilesDataTableWrapper/components/imageBasedSearchTiles/index.css [app-client] (css) */
.image_based_search_tiles_modal {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.image_based_search_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 10px 30px 25px;
  display: flex;
}

.image_based_search_wrapper .image_based_search_action_button_wrapper {
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: 100%;
  display: flex;
}

.image_based_search_tiles_modal .MuiBox-root .custom_modal_container .custom_modal_body {
  padding-right: 0 !important;
}

.image_based_search_action_button_wrapper .apply_search_image_button, .image_based_search_action_button_wrapper .clear_search_image_button {
  padding: 20px;
  font-size: 16px;
}


/* [project]/src/app/components/homePageWrapper/components/tilesDataTableWrapper/components/FileUploadWithCrop/index.css [app-client] (css) */
.file_upload_wrapper {
  flex-direction: column;
  width: 50%;
  display: flex;
}

.file_upload_wrapper .file_upload_heading {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: bold;
}

.file_upload_wrapper .file_upload_heading span {
  color: red;
  margin-left: 2px;
}

.file_upload_wrapper .file_input_block_wrapper {
  color: #5c5c5c;
  cursor: pointer;
  text-align: center;
  background-color: #0000;
  border: 2px dashed #5c5c5c;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px;
  transition: border-color .3s;
  display: flex;
  position: relative;
}

.file_input_block_wrapper svg {
  width: 30px;
  height: 30px;
}

.file_upload_wrapper .file_input_block_wrapper .file_upload_input {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.file_input_block_wrapper .accepted_formate_list {
  color: #5c5c5c;
  width: 60%;
}

.file_upload_wrapper .file_input_block_wrapper:hover, .file_upload_wrapper .file_input_block_wrapper:focus, .file_upload_wrapper .file_input_block_wrapper:active {
  border-color: #5c5c5c;
}

.file_upload_wrapper .react-crop-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.react-crop-wrapper .search_image {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 248px !important;
}


/* [project]/src/app/components/tilesDiscoveryPanel/index.css [app-client] (css) */
.discovered_tiles_panel_wrapper {
  width: 100%;
  height: 100%;
}

.discovered_tiles_panel {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.discovered_tiles_panel .discovered_tiles_panel_left {
  justify-content: space-between;
  align-items: center;
  width: calc(70% - 70px);
  height: 100%;
  display: flex;
}

.discovered_tiles_panel .discovered_tiles_panel_left .partila_metch_column_wrapper {
  width: 100%;
  height: 100%;
}

.discovered_tiles_panel .discovered_tiles_panel_center {
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 70px;
  display: flex;
}

.discovered_tiles_panel .discovered_tiles_panel_right {
  width: 30%;
  height: -webkit-fill-available;
  overflow-y: auto;
}


/* [project]/src/app/components/tilesDiscoveryPanel/components/fileUploadColumn/index.css [app-client] (css) */
.file_upload_column {
  flex-direction: column;
  gap: 15px;
  width: 50%;
  height: 100%;
  display: flex;
}

.file_upload_column .file_upload_header {
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-right: 15px;
  display: flex;
}

.file_upload_column .file_upload_header .file_upload_button {
  width: 100%;
  min-width: auto;
  height: 50px;
  color: var(--white);
  border: none;
  border-radius: 5px;
  padding: 10px;
}

.file_upload_column .file_upload_header .file_upload_button.active, .file_upload_column .file_upload_header .file_upload_button:hover {
  background-color: var(--orange);
  color: var(--white);
}

.file_upload_column .file_upload_body {
  width: 100%;
  height: 100%;
  padding-right: 15px;
  overflow-y: auto;
}

.file_upload_column .file_upload_body p {
  color: var(--taupeGray);
}

.file_upload_column .upload_placeholder {
  cursor: pointer;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  transition: all .3s;
  display: flex;
}

.file_upload_column .upload_placeholder:hover {
  opacity: .8;
}

.file_upload_column .upload_placeholder.dragging {
  border: 2px dashed var(--orange);
  background-color: #ff7f501a;
}

.file_upload_column .upload_placeholder p {
  color: var(--taupeGray);
  font-size: 14px;
}

.file_upload_column .excel_file_container {
  background: var(--charlestonGreen);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.file_upload_column .excel_file_container .upload_excel_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: flex;
}

.file_upload_column .upload_excel_container .download_sample_excel_file_link {
  color: var(--taupeGray);
  cursor: pointer;
  opacity: .7;
  font-size: 14px;
  text-decoration: none;
  transition: opacity .3s;
}

.file_upload_column .upload_excel_container .download_sample_excel_file_link:hover {
  opacity: 1;
  color: var(--orange) !important;
}

.excel_file_preview_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  display: flex;
}

.file_upload_column .file_preview_table_wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.file_upload_column .file_preview_table_wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: auto;
}

.file_upload_column .file_preview_table_wrapper .file_preview_table {
  width: 100%;
}

.file_upload_column .file_preview_table td {
  text-wrap: nowrap;
  color: var(--taupeGray);
  padding: 10px;
  font-size: 12px;
}

.file_upload_column .file_preview_table .not_matched_row td {
  color: var(--white);
}

.file_upload_column .file_preview_table .matched_row td {
  background-color: #0080002e;
}

.file_upload_column .file_preview_table tr:first-child {
  z-index: 1;
  position: sticky;
  top: 0;
}

.file_upload_column .file_preview_table tr:first-child td {
  color: var(--white);
  background-color: var(--blackOlive2);
  font-weight: bold;
}

.file_upload_column .excel_file_preview_actions {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 10px 10px;
  display: flex;
}

.file_upload_column .excel_file_preview_actions .clear_excel_button {
  border-radius: 10px;
}

.file_upload_column .image_upload_container {
  background: var(--charlestonGreen);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.file_upload_column .image_upload_container .upload_image_container, .file_upload_column .image_upload_container .upload_image_container .upload_placeholder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: 100%;
  display: flex;
}

.file_upload_column .image_upload_container .sample_image_file_container .sample_image_file_container_heading {
  color: var(--taupeGray);
  padding: 0 10px;
  font-size: 14px;
}

.file_upload_column .image_upload_container .sample_image_file_container .images_container {
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  display: grid;
}

.file_upload_column .image_upload_container .sample_image_file_container .sample_image_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.file_upload_column .image_upload_container .sample_image_file_container .sample_image {
  object-fit: contain;
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.file_upload_column .image_preview_container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
}

.file_upload_column .image_preview {
  object-fit: contain;
  border-radius: 5px;
  max-width: 100%;
  max-height: 100%;
}

.file_upload_column .copy_paste_text_upload_container {
  width: 100%;
  height: 100%;
  padding: 0 15px;
}

.file_upload_column .copy_paste_text_container {
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  height: 100%;
  display: flex;
}

.file_upload_column .copy_text_textarea {
  background: var(--charlestonGreen);
  width: 100%;
  height: 100%;
  color: var(--taupeGray);
  resize: none;
  border: none;
  border-radius: 6px;
  outline: none;
  padding: 10px;
  line-height: 1.5;
}

.file_upload_column .copy_text_textarea::-webkit-scrollbar {
  width: 6px;
}

.file_upload_column .copy_paste_text_container .search_tiles_button {
  margin-left: auto;
  min-height: 50px !important;
}

.discovered_tiles_panel_left .file_preview_box {
  background: var(--charlestonGreen);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  overflow-x: auto;
}

.discovered_tiles_panel_left .file_preview_box .file_preview_table {
  width: 100%;
}

.discovered_tiles_panel_left .file_preview_box .file_preview_table td {
  text-wrap: nowrap;
  padding: 10px;
  font-size: 12px;
}

.discovered_tiles_panel_left .file_preview_box .file_preview_table tr:first-child {
  z-index: 1;
  position: sticky;
  top: 2px;
}

.discovered_tiles_panel_left .file_preview_box .file_preview_table tr:first-child td {
  background-color: var(--blackOlive2);
}

.discovered_tiles_panel_left .file_preview_box .image_preview_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  display: flex;
}

.discovered_tiles_panel_left .file_preview_box .image_preview {
  object-fit: contain;
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.discovered_tiles_panel_left .file_preview_box .no_preview_container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.discovered_tiles_panel_left .file_preview_box .copy_text_preview_container {
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  height: calc(100% - 60px);
  padding: 10px;
  display: flex;
}

.discovered_tiles_panel_left .file_preview_box .copy_text_textarea {
  background: var(--charlestonGreen);
  width: 100%;
  min-height: -webkit-fill-available;
  color: var(--taupeGray);
  border: 1px solid var(--blackOlive2);
  resize: vertical;
  border-radius: 6px;
  outline: none;
  padding: 10px;
  line-height: 1.5;
}

.discovered_tiles_panel_left .file_preview_box .copy_text_preview_container .search_tiles_button {
  margin-left: auto;
  min-height: 50px !important;
}


/* [project]/src/app/components/tilesDiscoveryPanel/components/partialMetchColumn/index.css [app-client] (css) */
.mix_result_column {
  border-radius: 5px;
  flex-direction: column;
  width: 50%;
  height: 100%;
  padding-inline: 15px;
  display: flex;
  overflow-y: auto;
}

.mix_result_column::-webkit-scrollbar {
  width: 6px;
}

.partila_metch_column .column_header {
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  display: flex;
}

.partila_metch_column .column_header .column_header_text_count {
  color: var(--orange);
}

.not_metch_column {
  flex-direction: column;
  display: flex;
}

.not_metch_column .column_header {
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  display: flex;
}

.not_metch_column .column_header .column_header_text_count {
  color: var(--orange);
}

.not_metch_column .column_header .copy_all {
  border-radius: 5px;
  min-width: 100px;
  height: 30px;
  padding: 5px 10px;
}

.not_metch_column .column_body .not_metch_tile {
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  padding: 5px 10px;
  display: flex;
}

.not_metch_column .column_body .not_metch_tile:first-child {
  margin-top: 0;
}


/* [project]/src/app/components/tilesDiscoveryPanel/components/matchSingleTileRow/index.css [app-client] (css) */
.match_tile_row_wrapper {
  border-bottom: 1px solid var(--graniteGray);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
  display: flex;
}

.match_tile_row_wrapper:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.match_tile_row_wrapper .tiles_image_layout {
  justify-content: space-between;
  gap: 5px;
  width: 130px;
  display: flex;
}

.match_tile_row_wrapper .tiles_image_layout .small_stack {
  flex-direction: column;
  gap: 5px;
  height: 65px;
  display: flex;
  overflow-y: auto;
}

.match_tile_row_wrapper .tiles_image_layout .small_stack::-webkit-scrollbar {
  display: none;
}

.match_tile_row_wrapper .small_stack .extra_image {
  width: 25px;
  height: 18px;
}

.match_tile_row_wrapper .tile_details_box {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.match_tile_row_wrapper .tile_details_box .tile_name {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  overflow: hidden;
}

.match_tile_row_wrapper .tile_details_box .tile_details {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  overflow: hidden;
}

.match_tile_row_wrapper .action_container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  width: max-content;
  display: flex;
}

.action_container .box_quantity {
  border: 1px solid var(--blackOlive);
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
  border-radius: 5px;
  width: 80px;
  height: 30px;
  margin-right: 10px;
  padding: 0 5px;
  font-size: 18px;
}

.action_container .box_quantity::placeholder {
  color: var(--graniteGray) !important;
}

.action_container .box_quantity::-webkit-outer-spin-button, .action_container .box_quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (width <= 1200px) {
  .match_tile_row_wrapper .tile_details_box .tile_name {
    font-size: 14px;
  }

  .match_tile_row_wrapper .tile_details_box .tile_details {
    font-size: 12px;
  }
}


/* [project]/src/app/components/tilesDiscoveryPanel/components/exactMatchColumn/index.css [app-client] (css) */
.exact_match_column_wrapper {
  flex-direction: column;
  gap: 10px;
  height: 100%;
  display: flex;
  position: relative;
}

.exact_match_column_wrapper .column_header {
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-left: 15px;
  display: flex;
}

.exact_match_column_wrapper .column_header .column_header_text .column_header_text_count {
  color: var(--orange);
}

.exact_match_column_wrapper .column_body {
  height: 100%;
  padding-inline: 15px;
  overflow-y: auto;
}

.exact_match_column_wrapper .column_body::-webkit-scrollbar {
  width: 6px;
}

.exact_match_column_wrapper .column_body .no_data_found_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.exact_match_column_wrapper .actions_container {
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  padding: 0 0 0 15px;
  display: flex;
}

.exact_match_column_wrapper .actions_container .button {
  border-radius: 10px;
}


/* [project]/src/app/components/tilesDiscoveryPanel/components/searchTilesDialogue/index.css [app-client] (css) */
.tiles_search_dialogue_container {
  padding: 15px 10px !important;
}

.tiles_search_dialogue_container .MuiDialog-paper {
  border-radius: 30px !important;
  width: fit-content !important;
  min-width: 520px !important;
  max-width: 90vw !important;
}

.tiles_search_dialogue_container .tiles_search_dialogue_header {
  cursor: grab;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
  padding: 15px !important;
}

.tiles_search_dialogue_container .tiles_search_dialogue_header:active {
  cursor: grabbing;
}

.tiles_search_dialogue_container .tiles_search_dialogue_header .dialogue_header_right {
  align-items: center;
  gap: 10px;
  display: flex;
}

.tiles_search_dialogue_header .dialogue_header_right .selected_tiles_count {
  color: var(--orange);
  border-radius: 10px;
  font-size: 16px !important;
}

.tiles_search_dialogue_header .dialogue_header_right .select_all_button {
  border-radius: 10px !important;
  min-width: 125px !important;
  height: 45px !important;
  font-size: 16px !important;
}

.tiles_search_dialogue_header .dialogue_header_right .select_all_button.selecete {
  box-shadow: var(--boxShadow2);
  background-color: var(--orange) !important;
  color: var(--white) !important;
}

.tiles_search_dialogue_header .dialogue_header_right .select_all_button:hover svg path {
  transition: var(--transition) !important;
  fill: var(--white) !important;
}

.tiles_search_dialogue_container .tiles_search_dialogue_body {
  background: var(--blackOlive);
  padding: 0;
  position: relative;
}

.tiles_search_dialogue_container .tiles_search_dialogue_body .match_tile_row_wrapper {
  margin-bottom: 0 !important;
}

.tiles_search_dialogue_container .tiles_search_dialogue_body .search_input_wrapper {
  z-index: 2;
  background: var(--blackOlive);
  padding: 5px 8px 0;
  position: sticky;
  top: 0;
}

.search_input_container {
  background: var(--graniteGray);
  border-radius: 30px;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  display: flex;
}

.tiles_search_dialogue_container .tiles_search_dialogue_body .search_input_container .search_input_field {
  width: 100%;
}

.tiles_search_dialogue_container .tiles_search_dialogue_body .search_tiles_list_wrapper {
  width: 100%;
  min-width: 500px;
  height: 50vh;
  overflow-y: auto;
  padding: 0 10px !important;
}

.loading_more_indicator {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}

.tiles_search_dialogue_container .tiles_search_dialogue_body .no_data_found_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 500px;
  height: 50vh;
  display: flex;
  padding: 0 10px !important;
}

@media (width >= 1400px) {
  .tiles_search_dialogue_container .tiles_search_dialogue_body .search_tiles_list_wrapper, .tiles_search_dialogue_container .tiles_search_dialogue_body .no_data_found_wrapper {
    min-width: 600px;
    height: 50vh;
  }
}

@media (width >= 1800px) {
  .tiles_search_dialogue_container .tiles_search_dialogue_body .search_tiles_list_wrapper, .tiles_search_dialogue_container .tiles_search_dialogue_body .no_data_found_wrapper {
    min-width: 700px;
    height: 50vh;
  }
}


/*# sourceMappingURL=_484f99ab._.css.map*/