/* LOADER START */
.loader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
}

.custom-loader {
	width: 100px;
	height: 100px;
	display: grid;
	border: 8px solid #0000;
	border-radius: 50%;
	border-color: #e4e4ed #0000;
	animation: s6 2s infinite linear;
}

.custom-loader::before,
.custom-loader::after {
	content: "";
	grid-area: 1/1;
	margin: 4px;
	border: inherit;
	border-radius: 50%;
}

.custom-loader::before {
	border-color: #766df4 #0000;
	animation: inherit;
	animation-duration: 1s;
	animation-direction: reverse;
}

.custom-loader::after {
	margin: 16px;
}

@keyframes s6 {
	100% {
		transform: rotate(1turn);
	}
}

/* From Uiverse.io by Ratinax */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.96);
	z-index: 9999;
	display: flex;
	cursor: not-allowed;
}

.central {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 10em;
	height: 10em;
	border-radius: 50%;
	box-shadow: 0.5em 1em 1em blueviolet,
		-0.5em 0.5em 1em blue,
		0.5em -0.5em 1em purple,
		-0.5em -0.5em 1em cyan;
}

.external-shadow {
	width: 10em;
	height: 10em;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	box-shadow: 0.5em 0.5em 3em blueviolet,
		-0.5em 0.5em 3em blue,
		0.5em -0.5em 3em purple,
		-0.5em -0.5em 3em cyan;
	z-index: 999;
	animation: rotate 3s linear infinite;
	background-color: #212121;
}

.intern {
	position: absolute;
	color: white;
	z-index: 9999;
}

.intern::before {
	content: "100%";
	animation: percent 6s ease-in-out;
}

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

	50% {
		transform: rotate(180deg);
	}

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

@keyframes percent {
	0% {
		content: '0%';
	}

	25% {
		content: '25%';
	}

	33% {
		content: '33%';
	}

	42% {
		content: '42%';
	}

	51% {
		content: '51%';
	}

	67% {
		content: '67%';
	}

	74% {
		content: '74%';
	}

	75% {
		content: '75%';
	}

	86% {
		content: '86%';
	}

	95% {
		content: '95%';
	}

	98% {
		content: '98%';
	}

	99% {
		content: '99%';
	}
}

/* LOADER END */
.authentication-bg {
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('../images/others/login-img.png');
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.input-custom-icon span {
	position: absolute;
	z-index: 10;
	line-height: 40px;
	left: 13px;
	top: 50%;
	font-size: 16px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #7d8287;
}

.input-custom-icon .form-control {
	padding-left: 40px;
	padding-right: 20px;
}

.authentication-bg .bg-overlay {
	opacity: 0.85;
}

.bg-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	top: 0;
	opacity: 0.7;
	background-color: #000;
}

.bx {
	font-family: boxicons !important;
	font-weight: 400;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	display: inline-block;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.signin-other-title {
	position: relative;
}

.signin-other-title .title {
	display: inline-block;
	position: relative !important;
	z-index: 9;
	background-color: #fff;
	padding: 2px 16px;
}

.signin-other-title:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	right: 0;
	background-color: rgb(201, 200, 200);
	top: 23px;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
	cursor: pointer;
}

.social-list-item {
	height: 2.4rem;
	width: 2.4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: calc(2.4rem - 2px);
	border: 1px solid var(--bs-secondary-bg);
	border-radius: 50%;
	color: var(--bs-secondary-color);
	fill: var(--bs-secondary-color);
	text-align: center;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.form-control {
	padding: 4px;
	border: 1px solid #c9c9c9;
}

.btn-sm {
	padding: 4px;
}

/* .applyNowPopup .btn-close {
	position: absolute;
	width: 50px;
	height: 50px;
	background: var(--white);
	right: -20px;
	top: -20px;
	opacity: 1;
	border-radius: 50%;
	border: 1px solid var(--grey-500);
	z-index: 1;
} */

.bg-gray {
	background: #eaeff8;
}

.text-gray {
	color: #cecece;
}

.accordion-button {
	padding: 5px;
}

.auth-pass-inputgroup button {
	position: absolute;
	top: 0;
	right: 10px;
	height: 100%;
	padding: 0 10px;
	border: none;
	background: none;
	color: #7d8287;
	font-size: 16px;
	cursor: pointer;
}

.acordian-option {
	cursor: pointer;
}

.tox .tox-promotion-link,
.tox .tox-statusbar__branding svg {
	display: none !important;
}


.file-upload {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 1.5rem;
	background-color: #fff;
	-webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	/* width:800px; */
	position: relative;
	margin-top: 2rem;
}

.file-upload::after {
	position: absolute;
	font-size: 5rem;
	top: -18%;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.file-upload h2 {
	font-size: 1.5rem;
	color: #333;
	position: relative;
	padding-right: 1rem;
	margin-bottom: 1rem;
}

.file-upload p {
	font-size: 0.875rem;
	color: #ddd;
	margin-bottom: 1rem;
}

.custom-form-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 0.875rem;
}

.custom-file-drop-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 2px dashed #ddd;
	height: 200px;
	cursor: -webkit-grab;
	cursor: grab;
}

.custom-file-drop-area label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1.2rem;
	color: #3333;
	text-transform: uppercase;
	font-weight: bold;
}

.custom-file-drop-area input {
	display: none;
}

.custom-file-drop-area.highlight {
	border-color: blue;
}

.custom-file-drop-area.highlight label {
	color: blue;
}

.custom-file-preview {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(100px, 1fr)) [auto-fill];
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	grid-auto-rows: 100px;
	margin-top: 1rem;
	gap: 10px;
}

.custom-file-preview .prev-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.custom-file-preview .prev-img span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 2;
	cursor: pointer;
	color: #333;
	font-size: 0.87rem;
	padding-bottom: 0.1rem;
	width: 20px;
	height: 20px;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50px;
	display: none;
}

.custom-file-preview .prev-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.custom-file-preview .prev-img:hover span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.custom-file-preview .prev-img:hover::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.2);
}



/* product start */
.product-card {
	--accent-color: #00aeff;
	position: relative;
	width: 280px;
	background: white;
	border-radius: 1rem;
	padding: 0.3rem;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 50px 30px -20px;
	transition: all 0.5s ease-in-out;
}

.product-card .image-container {
	position: relative;
	width: 100%;
	height: 130px;
	border-radius: 0.7rem;
	border-top-right-radius: 4rem;
	margin-bottom: 1rem;
}

.product-card .image-container img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: inherit;
}

.product-card .image-container .svg {
	height: 100%;
	width: 100%;
	border-radius: inherit;
}

.product-card .image-container .price {
	position: absolute;
	right: 0.7rem;
	bottom: -1rem;
	background: white;
	color: var(--accent-color);
	font-weight: 900;
	font-size: 0.9rem;
	padding: 0.5rem;
	border-radius: 1rem 1rem 2rem 2rem;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 15px 0px;
}

.product-card .favorite {
	position: absolute;
	width: 19px;
	height: 19px;
	top: 5px;
	right: 5px;
	cursor: pointer;
}

.product-card .favorite input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.product-card .favorite input:checked~svg {
	animation: bouncing 0.5s;
	fill: rgb(255, 95, 95);
	filter: drop-shadow(0px 3px 1px rgba(53, 53, 53, 0.14));
}

.product-card .favorite svg {
	fill: #a8a8a8;
}

.product-card .content {
	padding: 0px 0.8rem;
	margin-bottom: 1rem;
}

.product-card .content .brand {
	font-weight: 900;
	color: #a6a6a6;
}

.product-card .content .product-name {
	font-weight: 700;
	color: #666666;
	font-size: 0.7rem;
	margin-bottom: 1rem;
}

.product-card .content .color-size-container {
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
	font-size: 0.7rem;
	font-weight: 700;
	color: #a8a8a8;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.product-card .content .color-size-container>* {
	flex: 1;
}

.product-card .content .color-size-container .colors .colors-container {
	padding: 0px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.3rem;
	font-size: 0.5rem;
	margin-top: 0.2rem;
}

.product-card .content .color-size-container .colors .colors-container .color {
	height: 14px;
	position: relative;
}

.product-card .content .color-size-container .colors .colors-container .color:hover .color-name {
	display: block;
}

.product-card .content .color-size-container .colors .colors-container .color a {
	display: inline-block;
	height: 100%;
	aspect-ratio: 1;
	border: 3px solid black;
	border-radius: 50%;
}

.product-card .content .color-size-container .colors .colors-container .color .color-name {
	display: none;
	position: absolute;
	bottom: 125%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	background: black;
	padding: 0.2rem 1rem;
	border-radius: 1rem;
	text-align: center;
}

.product-card .content .color-size-container .colors .colors-container .color:first-child a {
	border-color: #ffd426;
}

.product-card .content .color-size-container .colors .colors-container .color:nth-child(2) a {
	background: #144076;
}

.product-card .content .color-size-container .colors .colors-container .color:nth-child(3) a {
	border-color: #00b9ff;
}

.product-card .content .color-size-container .colors .colors-container .color:nth-child(4) a {
	border-color: #ff6ba1;
}

.product-card .content .color-size-container .colors .colors-container .active {
	border-color: black;
}

.product-card .content .color-size-container .sizes .size-container {
	padding: 0px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.2rem;
}

.product-card .content .color-size-container .sizes .size-container .size {
	height: 14px;
}

.product-card .content .color-size-container .sizes .size-container .size .size-radio {
	cursor: pointer;
}

.product-card .content .color-size-container .sizes .size-container .size .size-radio input {
	display: none;
}

.product-card .content .color-size-container .sizes .size-container .size .size-radio input:checked~.name {
	background: var(--accent-color);
	border-radius: 2rem 2rem 1.5rem 1.5rem;
	color: white;
}

.product-card .content .color-size-container .sizes .size-container .size .size-radio .name {
	display: grid;
	place-content: center;
	height: 100%;
	aspect-ratio: 1.2/1;
	text-decoration: none;
	color: #484848;
	font-size: 10px;
	text-align: center;
}

.product-card .content .rating {
	color: #a8a8a8;
	font-size: 0.6rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.product-card .content .rating svg {
	height: 12px;
}

.product-card .button-container {
	display: flex;
	gap: 0.3rem;
}

.product-card .button-container .button {
	border-radius: 1.4rem 1.4rem 0.7rem 0.7rem;
	border: none;
	padding: 0.5rem 0;
	background: var(--accent-color);
	color: white;
	font-weight: 900;
	cursor: pointer;
}

.product-card .button-container .button:hover {
	background: orangered;
}

.product-card .button-container .buy-button {
	flex: auto;
}

.product-card .button-container .cart-button {
	display: grid;
	place-content: center;
	width: 50px;
}

.product-card .button-container .cart-button svg {
	width: 15px;
	fill: white;
}

.product-card:hover {
	transform: scale(1.03);
}

@keyframes bouncing {

	from,
	to {
		transform: scale(1, 1);
	}

	25% {
		transform: scale(1.5, 2.1);
	}

	50% {
		transform: scale(2.1, 1.5);
	}

	75% {
		transform: scale(1.5, 2.05);
	}
}

/* product start */

.rating {
	font-size: 1.2em;
	color: gold;
}

.old-price {
	text-decoration: line-through;
	color: red;
}

.new-price {
	font-size: 1.5em;
	color: green;
}

.discount {
	color: red;
}

.about-item {
	margin-top: 20px;
}

ul {
	padding: 0;
}

ul li {
	margin-bottom: 10px;
}

.buttons {
	margin-top: 20px;
}

.buttons .btn {
	margin-right: 10px;
}

.social-share {
	margin-top: 20px;
}

.social-share span {
	margin-right: 10px;
}

.social-share a {
	margin-right: 10px;
	color: #000;
}

.frame {
	position: relative;
	display: flex;
	overflow: hidden;
	width: 100%;
	background: url(http://www.pageresource.com/wallpapers/thumb/white-terry-cloth-closeup-texture-picture-free-graph_714896_thumb.jpg);
	border: 10px solid white;
}

.frame:hover img {
	transform: scale(1.1);
	opacity: 1;
}

.width-1 {
	width: 1px;
	font-size: 18px;
	padding: 5px;
}

.btn-white1 {
	cursor: pointer;
	height: 30px;
	background: #fff;
	/* background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%); */
	border-radius: 0px;
	/* border: 1px solid #8F9092; */
	transition: all 0.2s ease;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #606060;
	text-shadow: 0 1px #fff;
}

.btn-white1:hover {
	box-shadow: inset 0 0 3px 3px #CECFD1;
}

.btn-white2 {
	cursor: pointer;
	/* height: 30px; */
	background: #fff;
	/* background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%); */
	border-radius: 0px;
	/* border: 1px solid #8F9092; */
	transition: all 0.2s ease;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #606060;
	text-shadow: 0 1px #fff;
}

.btn-white2:hover {
	box-shadow: inset 0 0 3px 3px #CECFD1;
}

/* .btn-white1:active {
	box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
}
.btn-white1:focus {
	box-shadow: 0 4px 3px 1px #FCFCFC, 0 6px 8px #D6D7D9, 0 -4px 4px #CECFD1, 0 -6px 4px #FEFEFE, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
} */

.sidebar-scroll {
	max-height: 100vh;
}

.radio-tile-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.radio-tile-group .input-container {
	position: relative;
	height: 20px;
	width: 20px;
	margin: 0.7rem;
}

.radio-tile-group .input-container .radio-button {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
	cursor: pointer;
}

.radio-tile-group .input-container .radio-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 2px solid #079ad9;
	border-radius: 20px;
	padding: 1rem;
	transition: transform 300ms ease;
}

.radio-tile-group .input-container .icon svg {
	fill: #079ad9;
	width: 2rem;
	height: 2rem;
}

.radio-tile-group .input-container .radio-tile-label {
	text-align: center;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #079ad9;
}

.radio-tile-group .input-container .radio-button:checked+.radio-tile {
	background-color: #079ad9;
	border: 2px solid #079ad9;
	color: white;
	transform: scale(1.1, 1.1);
}

.radio-tile-group .input-container .radio-button:checked+.radio-tile .icon svg {
	fill: white;
	background-color: #079ad9;
}

.radio-tile-group .input-container .radio-button:checked+.radio-tile .radio-tile-label {
	color: white;
	background-color: #079ad9;
}

.truncate {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 767px) {
	.truncate {
		width: 150px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.truncate {
		width: 300px;
	}
}

@media (min-width: 992px) {
	.truncate {
		width: 100%;
	}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

.eTPeFw {
	z-index: 0 !important;
}

.active {
	background: #b5b4b4;
	padding: 5px;
	border-radius: 0px;
}

.active a .active a .link-title,
.active a span,
.active a i {
	color: #000;
	font-weight: bolder;
}

.nav li {
	font-weight: 500
}

.inputBox_container {
	display: flex;
	align-items: center;
	flex-direction: row;
	/* max-width: 14em; */
	width: 100%;
	height: fit-content;
	background-color: #ffffff;
	border-radius: 0px;
	overflow: hidden;

}

.search_icon {
	height: 1em;
	padding: 0 0.5em 0 0.8em;
	fill: #abb2bf;
	color: #0a1727;
}

.inputBox {
	background-color: transparent;
	color: #0a1727;
	outline: none;
	width: 100%;
	border: 0;
	padding: 0.5em 1.5em 0.5em 0;
	font-size: 1em;
}

.nav-btn {
	width: 40px;
	height: 40px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #474747;
	border-radius: 50%;
	cursor: pointer;
	transition-duration: .3s;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
	border: none;
}

.navIcon {
	width: 18px;
	color: #fff;
}

.navIcon path {
	fill: white;
}

.nav-btn:hover {
	background-color: rgb(56, 56, 56);
}

.nav-btn:hover .navIcon {
	animation: navIconRing 0.9s both;
}

/* navIcon ringing animation keyframes*/
@keyframes navIconRing {

	0%,
	100% {
		transform-origin: top;
	}

	15% {
		transform: rotateZ(10deg);
	}

	30% {
		transform: rotateZ(-10deg);
	}

	45% {
		transform: rotateZ(5deg);
	}

	60% {
		transform: rotateZ(-5deg);
	}

	75% {
		transform: rotateZ(2deg);
	}
}

.nav-btn:active {
	transform: scale(0.8);
}


.pagination-button>i {
	transition: transform .3s ease-in-out;
}

.pagination-button:hover .left {
	transform: translateX(-5px);
}

.pagination-button:hover .right {
	transform: translateX(5px);
}

.pagination-button:active {
	transform: scale(0.95);
}

.table-truncate {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 767px) {
	.table-truncate {
		width: 70px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.table-truncate {
		width: 150px;
	}
}

@media (min-width: 992px) {
	.table-truncate {
		width: 100%;
	}
}

.table> :not(caption)>*>* {
	padding: 2px;
}

.date-range-sidebar-a {
	padding: 10px;
	border: none;
}

.date-range-sidebar-a:hover {
	background: #b5b4b4;
}

.btn-upgrade {
	background: #198754;
	padding-left: 25%;
	padding-right: 25%;
	border-radius: 0px;
	color: #fff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background-color: #ebebeb;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 10px;
	border-radius: 0px;
	background: #0d6efd;
}

.padding-left-fifteen-percent {
	padding-left: 15%;
}

.fuzzy-search-card {
	display: flex;
	width: 100%;
	margin-top: 10px;
	padding-left: 25px;
	padding-right: 25px;
	border: 1px solid;
}



.chat-box {
	position: relative;
	margin: 10px 0;
	padding: 10px 20px;
	border-radius: 10px;
	background-color: #e0e0e0;
	width: fit-content;
	max-width: 80%;
}

.chat-box p {
	margin: 0;
	color: #f5f5f5;
}

.chat-box.receiver {
	background-color: #b95684;
	align-self: flex-start;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chat-box.receiver::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -15px;
	width: 15px;
	height: 20px;
	z-index: 9;
	border-radius: 0 0 20px 0;
	background: #eaeff8;
}

.chat-box.receiver::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: -8px;
	width: 15px;
	height: 15px;
	background: #b95684;
}

.chat-box-status {
	display: flex;
	font-size: 0.8em;
	color: #ccc;
	margin-top: 5px;
}

.react-datepicker-wrapper {
	display: block
}


.status-icon {
	font-size: 24px;
	margin-right: 10px;
}

.highlight {
	background-color: #e6f6ed;
}

.product-card-scrolable {
	height: 300px;
	overflow-y: auto;
}

.uniform-product-responsive-carasoul-image {
	width: 100%;
	max-width: 250px;
	height: 80px;
	object-fit: contain;
	display: block;
	box-sizing: border-box;
	background-color: #4e4e4e;
}

@media (max-width: 768px) {
	.uniform-product-responsive-carasoul-image {
		max-width: 100%;
		height: 80px;
	}
}

.wrap-container {
	margin-bottom: 20px;
	padding: 10px;
	border: 1px solid #ccc;
	width: 200px;
}

.hyphenated {
	word-wrap: normal;
}