.xf_btn_corner {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 10px, calc(100% - 10px) 0);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 10px, calc(100% - 10px) 0);
}

/* Checkbox for filters */
.xf_checkmark_text {
  display: inline-block;
}

.xf_container_checkmark {
  display: block;
  position: relative;
  /* padding-left: 35px;
    margin-bottom: 12px; */
  cursor: pointer;
  /* font-size: 22px; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.xf_container_checkmark input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.xf_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  /* height: 25px;
    width: 25px; */
  /* background-color: #eee; */
}

/* On mouse-over, add a grey background color */
/* .xf_container_checkmark:hover input ~ .xf_checkmark {
    background-color: #ccc;
  } */

/* When the checkbox is checked, add a blue background */
/* .xf_container_checkmark input:checked ~ .xf_checkmark {
    background-color: #2196F3;
  } */

/* Create the xf_checkmark/indicator (hidden when not checked) */
.xf_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the xf_checkmark when checked */
.xf_container_checkmark input:checked~.xf_checkmark:after {
  display: block;
}

/* Style the xf_checkmark/indicator */
.xf_container_checkmark .xf_checkmark:after {
  /* left: 9px;
    top: 5px;
    width: 5px;
    height: 10px; */
  /* border: solid white; */
  border-style: solid;
  /* border-width: 0 3px 3px 0; */
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.xf_discount {
  position: absolute;
}



.xf_prod_lower_container {
  position: relative;
}

.xf_pos_absolute_full_width {
  position: absolute;
  left: 0px;
  right: 0px;
}








.xf_dropdown-content {
  /* display: none; */
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 10;
  max-height: 200px;
}

.xf_dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.xf_dropdown-content a:hover {
  background-color: #fcfcfc;
}











.xf_cat_img>img {
  z-index: -10;
  /* clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px)); */
}

/* .xf_cat_upper_container .xf_cat_img img {
  transition: transform 0.3s ease-in-out;
}

.xf_cat_upper_container:hover .xf_cat_img img {
  transform: scale(1.1);
} */


.xf_cat_lower_container {
  min-height: 112px;
}

.xf_cat_container_triangle {
  position: relative;
  height: 32px;
  width: 100%;
}

.xf_cat_triangle {
  position: absolute;
  right: 16px;
  top: 16px;
  fill: #CE122D;
}







.xf_tabs_wrapper {
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.xf_tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  border-bottom: 1px solid #ccc;
}

.xf_tab {
  padding: 10px 20px;
  cursor: pointer;
  color: red;
  background-color: white;
  border: 1px solid #ccc;
  border-bottom: none;
}

.xf_tab.active {
  background-color: #fff;
  border-bottom: 1px solid #fff;
}

.xf_tab_content {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
}

.xf_tab_item {
  display: none;
}

.xf_show {
  display: block !important;
}

.xf_tab_item.active {
  display: block;
}












.xf_icon_container {
  position: relative;
}

.xf_logged {
  display: inline-block;
  /* border: 1px solid #ccc; */
  cursor: pointer;
}

.xf_icon {
  display: inline-block;
  /* border: 1px solid #ccc; */
  cursor: pointer;
}

.xf_dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 12;
}

.xf_dropdown_item {
  padding: 10px;
  margin: 0;
  display: block;
}

.xf_dropdown_item {
  text-decoration: none;
  border: none;
}



.xf_icon_container:hover .xf_dropdown {
  display: block;
}







/* Center the content vertically and horizontally */
.xf_upload_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* height: 100vh; Optional: Make it full height */

  height: 100%;
}

/* Style the file input to look like a button */
.xf_order_upload {
  display: none; /* Hide the default file input */
}

/* Style the button-like element */
.xf-upload-button {
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.xf-upload-button:hover {
  background-color: black; /* Hover color */
}

/* Style the label */
.xf-input-description {
  cursor: pointer; /* Add a pointer cursor to indicate interactivity */
}


.xf_upload_e_format {
  color: red;
}







.xf_doc_table_row {
  cursor: pointer;
  border: 1px 0 solid gray;

}

.xf_doc_table_row:hover {
  background-color: lightgray;
}






.xf_doc_active {
  color: white;
  background-color: red;
}

.xf_doc_active {
	width: 200px;
}



.xf_doc_down_button {
  text-align: center;
}


.xf_doc_down_button > button {
  color: #fff;
  background-color: #CE122D;
  padding: 8px 16px;
  border-radius: 0px;
  border-width: 0px;
}

.xf_doc_down_button > button:hover {
  color: #fff;
  background-color: #000;
}



.xf_usr_doc_inner > thead > tr:hover {
  background-color: #f4f4f4;
}

.xf_usr_doc_inner > tbody > tr:hover {
  background-color: #fff;
}