.b2b-dashboard {
	background-color: #b52024;
	/* Red background color */
	border: 0px solid #f6f6f6;
	/* No border */
	padding: 20px;
	border-radius: 20px;
}

.b2b-header {
	text-align: center;
}

.b2b-header h1 {
	color: #fff !important;
	/* White text color */
}

.b2b-content {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.b2b-section {
	background-color: #e0e0e0;
	padding: 20px;
	border-radius: 10px;
	width: 31%;
}

.b2b-section h2 {
	color: black;
	/* White text color */
	margin-bottom: 10px;
	text-transform: uppercase !important;
}

.b2b-section h4{
	font-weight: 200 !important;
    font-size: 14px;
    margin-top: 3px;
}

.core-products {
	text-align: center;
}

.core-products h2 {
	margin-bottom: 20px;
}

.table-container {
	display: inline-block;
	padding: 20px;
	background-color: #f6f6f6;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.table-container {
	text-align: center;
}

table.myTable {
	margin: 0 auto;
	/* Center horizontally */
}

.p-img img {
	max-width: 70px;
	/* min-width: 100px;
    height: 120px;
    max-height: 120px; */
}

.p-img {
	border-radius: 20px;
}

/* Customize Toastify notifications on the WordPress admin dashboard */
.toastify {
	position: fixed;
	margin-top: 50px;
	right: 20px;
	max-width: 300px;
	color: #fff;
	border-radius: 4px;
	padding: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	border-radius: 2px;
	cursor: pointer;
}

/* Styles for success notifications */
.toastify.toastify-success {
	background-color: rgba(15, 181, 12, 0.8) !important;
	/* Transparent and vibrant green */
}

/* Styles for error notifications */
.toastify.toastify-error {
	background-color: rgba(255, 0, 0, 0.8) !important;
	/* Transparent and vibrant red */
}

/* Customize Toastify notifications on the WordPress admin dashboard */

/* Style for the select dropdown */
.variation-select {
	appearance: none;
	/* Remove default arrow */
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	/* Background color */
	border: 1px solid #ccc;
	/* Border color */
	padding: 2px 14px;
	/* Padding */
	font-size: 14px;
	/* Font size */
	border-radius: 4px;
	/* Border radius */
	cursor: pointer;
	/* Cursor style */
}

/* Hover effect */
.variation-select:hover {
	border-color: #999;
	/* Border color on hover */
}

/* Focus effect */
.variation-select:focus {
	outline: none;
	/* Remove outline */
	border-color: #66afe9;
	/* Border color on focus */
	box-shadow: 0 0 0 2px rgba(102, 175, 233, 0.6);
	/* Box shadow on focus */
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	/* Semi-transparent black overlay */
	z-index: 9999;
	/* Ensure it's above other content */
	display: none;
	/* Initially hidden */
}

.loader {
	border: 6px solid #f3f3f3;
	/* Light grey border */
	border-top: 6px solid #b52024;
	/* Red border for the top */
	border-radius: 50%;
	/* Circular border radius */
	width: 50px;
	/* Width of the loader */
	height: 50px;
	/* Height of the loader */
	animation: spin 2s linear infinite;
	/* Spin animation */
	margin: auto;
	/* Center the loader horizontally */
	margin-top: calc(50vh - 25px);
	/* Center the loader vertically */
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	/* Starting point of the animation */
	100% {
		transform: rotate(360deg);
	}

	/* Ending point of the animation */
}

.back-to-dashboard {
	background: #96bf48;
	padding: 15px;
	border-radius: 4px;
	color: #fff;
	margin: 10px;
}

.wc-block-cart__submit-button {
	width: 50% !important;
}

.wc-block-cart__submit-button span {
	padding: 15px !important;
}

.sales-rep {
	border-bottom: 1px solid #ccc;
}

.sales-rep h3 {
	margin-bottom: 0;
}

.sales-rep h4 {
	margin-top: 0;
}

.back-to-dashboard:hover {
	color: white;
}

.basket-popup {
	position: fixed;
	bottom: 45px;
	right: 30px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding: 10px;
	z-index: 9999;
	/* Ensure it's above other elements */
}

.basket-popup.prepaid-freight {
  border: 5px solid #b52024;
}

.basket-popup.prepaid-freight:hover::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  right: calc(100% + 30px);
  display: block;
  white-space: nowrap;
  transform: translateY(-50%);
  background: #b52024;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
}

.basket-popup.prepaid-freight:hover::after {
  content: '';
  width: 15px;
  height: 15px;
  background: #b52024;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: calc(100% + 25px);
}

.basket-icon {
	position: relative;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	width: 40px;
	height: 40px;
}

.basket-icon img {
	vertical-align: middle;
	width: 30px;
}

.cart-count {
	position: absolute;
	top: -16px;
	left: -20px;
	background-color: #b52024;
	color: white;
	border-radius: 50%;
	font-size: 13px;
	line-height: 20px;
	text-align: center;
	z-index: 99999;
	border-radius: 10px;
	padding-left: 5px;
	padding-right: 5px;
}

/* Custom Product Table */

.precord table {
	/* max-width: 960px; */
	border-collapse: collapse;
}

.precord tr {
	vertical-align: top;
}

.precord th,
td {
	border: 1px solid #000;
	padding: 8px;
	text-align: center;
}

.precord th {
	background-color: #b52024;
	color: #fff;
	border-color: #fff;
	vertical-align: middle;
}

.precord .pimg {
	width: 135px;
}

.precord {
	margin: 20px 0px;
	/* max-width: 960px;
   overflow-x: scroll; */
}

.pname {
	text-align: left;
	width: fit-content;
	border: 1px solid red;
	padding: 20px;
	padding-right: 40px;
	background-color: #b52024;
	color: #fff;
	position: relative;
	border-color: #fff;
}

.pname .toggle-arrow {
	position: absolute;
	right: 15px;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 10px solid #fff;
	transition: transform 0.3s ease;
	margin-top: -10px;
}

.pname .toggle-off {
	right: 25px !important;
	margin-top: -15px !important;
}

.size-row td:nth-child(odd) {
	border-left: 0.5px;
}

.size-row td:nth-child(even) {
	border-right: 0.5px;
}

.head-row td {
	border-left: none;
	border-right: none;
}

.sub-table .size-row:nth-last-child(n) td,
.sub-table .head-row:nth-last-child(n) td {
	border-bottom: none;
	border-right: none;
}

.size-row td {
	padding: 16px;
	white-space: nowrap;
}

td.price-column {
	padding: 16px;
}

.empty-cart {
	display: none;
}

.head-row .add-to-cart {
	color: black !important;
	font-weight: bolder;
	font-size: 20px;
	margin-top: -4px;
}

td.color-column {
	padding: 18px;
}

/* Custom Product Table */

@media only screen and (max-width: 600px) {
	.b2b-header .p-img {
		width: 100px;
	}

	.b2b-section {
		width: 100%;
		margin-bottom: 20px;
	}

	.b2b-content {
		display: block !important;
	}

	.precord {
		overflow-x: scroll;
	}
}

.p-table {
	display: none
}

.pbox {
	margin-top: 30px;
}

.pbox .pbox-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 15px;
	gap: 15px;
	background-color: #b52024;
	outline: 3px #b52024 solid;
	outline-offset: -3px;
	border: none;
	cursor: pointer;
	transition: 400ms;
	margin-left: 15px;
	margin-bottom: 15px;
}

.pbox .pbox-btn .text {
	color: white;
	font-weight: 700;
	font-size: 1em;
	transition: 400ms;
}

.pbox .pbox-btn svg path {
	transition: 400ms;
}

.pbox .pbox-btn:hover {
	background-color: transparent;
}

.pbox .pbox-btn:hover .text {
	color: #181717;
}

.pbox .pbox-btn:hover svg path,
.pbox .pbox-btn:hover svg circle {
	stroke: #181717;
}

.pbox .pbox-btn:hover svg circle.fill {
	fill: #181717;
	stroke: transparent;
}

.search-container h2 {
	color: #fff !important;
	font-size: 20px !important;
	text-align: center;
	margin-bottom: 5px !important;
}

.container_pbox {
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 12px;
	padding: 0px;
	background-color: none;
	border-radius: 8px;
	display: flex;
	align-items: center;
}

.select-field {
	flex: 1;
	margin-right: 10px;
	padding: 10px;
	font-size: 13px;
	border: 2px solid black;
	border-radius: 5px;
	outline: none;
	height: 40px;
	color: red
}

.search-input {
	flex: 1;
	padding: 10px;
	font-size: 16px;
	border: 2px solid black;
	border-radius: 5px;
	outline: none;
	height: 40px;
	color: red;
	width: 150px;
}

.search-desc {
	color: #fff !important;
	font-size: 14px !important;
	margin-bottom: 0 !important;
	text-align: center;
	margin-top: 5px !important;
}

.search-input:focus {
	border-color: red;
}

.select-field:focus {
	border-color: red;
}

.highlighted-category {
	background-color: yellow;
	width: 500px;
}

.highlighted-category.category-heading {
	width: 100%;
}

.b2b-header {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.b2b-header .bcol-1,
.b2b-header .bcol-2,
.b2b-header .bcol-3 {
	width: 30%;
	padding: 20px 10px;
}

.b2b-header .bcol-2 h1 {
	margin-top: 0px;
}

.b2b-header .container_pbox {
	flex-wrap: wrap;
	margin: 0px;
}

.b2b-header .suggestions ul {
	margin: 0px;
	width: 100%;
}

.b2b-header .suggestions ul li {
	padding: 10px;
	width: 100%;
}

.b2b-header .container_pbox .select-field {
	margin: 0px 0px 10px 0px;
	border-color: #d2d2d2;
	padding: 8px 10px;
	color: #000;
	border-radius: 2px;
}

.suggestions {
	position: relative;
	z-index: 999;
	/* Ensure it appears above other elements */
	width: calc(100% - 2px);
	/* Adjust width if needed */
	background-color: #fff;
	border: 1px solid #ccc;
	border-top: none;
	border-radius: 0 0 5px 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: none;
	/* Initially hidden */
}

.suggestions ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	background: white;
	margin-top: 16px;
	margin-left: -150px;
}

.suggestions li {
	top: 16px;
	padding: 8px 10px;
	cursor: pointer;
	width: 178px;
	font-size: 11px;
	text-align: left;
	list-style: none;
	right: -24px;
	background: #ffffffba;
}

.suggestions li:hover {
	background-color: #f0f0f0;
}

.container_pbox .search-input {
	width: auto !important;
	height: 40px !important;
}

.loader-container .loader {
	position: absolute;
	border: 6px solid #f3f3f3;
	border-top: 6px solid #b52024;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	animation: spin 2s linear infinite;
	margin: auto;
	margin-left: -30px;
	margin-top: -10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.popup-overlay {
	position: fixed;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 99999;
	overflow-y: auto;
	/* 	background: rgba(0, 0, 0, .6); */
	background: #000000a6;
	margin: 0 auto;
}

.popup {
	background: #00000059;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow-y: auto;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: absolute;
	display: flex;
	align-items: center;
}

div.popup-content {
	text-align: center;
	overflow-y: auto;
	width: 900px;
	background: white;
	padding: 50px;
	height: 700px;
	margin-left: 300px;
	margin: 0 auto;
}

/* .popup-content h2{
	 color: white;
} */

.close-popup {
	background: #b52024;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: white;
	position: relative;
	top: -45px;
	right: -35px;
	float: right;
}

.close-popup:hover {
	color: #333;
}

div.popup-content .popup_name {
	background: #b52024;
	width: auto;
	margin: 0 auto;
	color: white;
	height: 40px;
	padding: 5px;
	margin-bottom: 50px;
	display: inline-block;
}

.popup-categories {
	position: absolute;
	top: 120px;
	width: 25%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 9999;
	display: none;
}

.popup_c {
	padding: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	position: relative;
	color: white;
	background-image: linear-gradient(185deg, rgba(181, 32, 36, 1), rgba(216, 83, 87, 1));
	overflow-y: auto;
}

.popup-category ul {
	list-style: none;
	padding: 0px;
	text-align: left;
}

.popup-category ul li {
	padding: 5px;
	padding-bottom: 10px;
	cursor: pointer;
	font-weight: bold;
	font-size: 13px;
}

.search-box-btn {
	position: relative;
	display: flex;
	width: 100%;
	border: 2px solid rgb(182 182 182);
	border-radius: 3px;
}

.popup-btn-c {
	position: relative;
}

.popup-btn-c .innericon1 {
	background-image: linear-gradient(185deg, rgba(181, 32, 36, 1), rgba(220, 183, 184, 1));
	height: 100%;
	width: 40px;
	padding: 10px 0px 0px 0px;
	cursor: pointer;
}

.search-box-btn .innericon {
	position: absolute;
	height: 100%;
	padding: 10px;
	background-image: linear-gradient(180deg, rgba(181, 32, 36, 1), rgba(236, 56, 61, 1));
	right: 0px;
	cursor: pointer;
}

.container_pbox .loader-container .loader {
	margin-left: -75px;
	margin-top: -12px;
}

div.popup-content::-webkit-scrollbar {
	width: 12px;
}

div.popup-content::-webkit-scrollbar-thumb {
	background-color: #b52024;
	border-radius: 50px;
}

div.popup-content ::-webkit-scrollbar-track {
	background-color: transparent;
}

.toggle-off {
	transform: rotate(90deg) translateY(-50%) !important;
}

div.popup-content .popup_content {
	text-align: left;
}


.group-heading {
	text-align: left;
	margin-top: 50px;
	background: white;
	padding: 20px;
	border: 1px solid lightgray;
	border-bottom: 10px solid lightgray;
	margin-bottom: 30px;
}

h2.category-heading {
	font-size: 24px;
	margin-top: 30px;
	margin-bottom: 20px;
	margin-bottom: 0;
	text-transform: uppercase;
}

h3.category-heading {
	font-size: 18px;
	margin-top: 15px;
	padding-left: 30px;
}

.wc-proceed-to-checkout .back-to-btn {
	position: absolute !important;
}

.pricing-info-icon {
	position: relative;
	display: inline-block;
}

.pricing-info-tooltip {
	visibility: hidden;
	width: 200px;
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 5px;
	border-radius: 5px;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -100px;
}

.pricing-info-icon:hover .pricing-info-tooltip {
	visibility: visible;
}

.cart_item .product-info .product-title {
	text-align: left !important;
	float: left;
}

.product-remove a {
	padding: 20px !important;
	float: unset;
}

.cross {
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
	margin-top: -10px;
	background: black;
	color: white;
	height: 20px;
	width: 20px;
	display: block;
	line-height: 20px;
	cursor: pointer;
	position: absolute;
	right: 120px;
}

.special-products .toggle-arrow {
	display: none;
}

.special-products .p-table {
	display: table !important
}

.woocommerce-cart-form__cart-item .variation {
	font-size: 13px
}

table.p-table {
	width: 100%;
}

.p-table th {
	vertical-align: middle;
}

.special-products td {
	vertical-align: middle;
}

.special-products .sub-table tr:first-child td {
	border-top: none;
}

/*
table.subtotal tr.size-row td{
	vertical-align:middle;
}
table.action tr.size-row td{
	padding-top: 20px;
}
table.roll-price tr.size-row td{
	vertical-align:middle;
}
table.roll-table tr.size-row td{
	vertical-align:middle;
}
table.size tr.size-row td{
	vertical-align:middle;
}
.special-products table th{
    padding: 25px;
}*/

.size-row .add-to-cart {
	color: black !important;
	font-weight: bolder;
	font-size: 20px;
	margin-top: -4px;
}

.special-size {
	font-family: var(--h4_typography-font-family);
	font-weight: var(--h4_typography-font-weight);
	line-height: var(--h4_typography-line-height);
	letter-spacing: var(--h4_typography-letter-spacing);
	text-transform: var(--h4_typography-text-transform);
	font-style: var(--h4_typography-font-style, normal);
	background-color: #b52024;
	color: #fff;
	border-color: #fff;
	border-left: 0.5px;
	border-top: 0.5px;
	height: 70px;
	vertical-align: middle;
}

.special-col {
	background: #fff;
	border-color: #0000002b;
	border-left: 0.5px;
	border-top: 0.5px;
	height: 70px;
}

.special-products th {
	height: 80px;
}

.core-products .p-table th:nth-child(7) {
    min-width: 325px;
}
.core-products .p-table tbody td:nth-child(7) .sub-table th,
.core-products .p-table tbody td:nth-child(8) .sub-table th,
.core-products .p-table tbody td:nth-child(9) .sub-table th,
.core-products .p-table tbody td:nth-child(10) .sub-table th {
  min-width: 110px;
}


.wc-special-product-categories {
    text-align: left;
    color: #000;
	padding: 10px 5px;
	font-weight: 600;
}
.p-table .add-to-cart.fa-plus:before {
    content: '\f07a';
}