/* @font-face {
	font-family: 'Poppin';
	src: url('../fonts/Poppins-Regular.ttf');
}

body {
	font-family: 'Poppin' !important;
} */

.custom-drop-down {
	position: absolute;
	transform: translate3d(0px, 38px, 0px);
	top: 4px;
	left: 30px;
	right: 30px;
	will-change: transform;
	z-index: 9999999999999;
	background-color: #f9f9f9;
	border: 1px solid #dddddd;
	display: none;
}

.custom-drop-down .cart_list {
	width: 100%;
	padding: 0 !important;
	max-height: 450px !important;
	overflow-y: auto;
}

.custom-drop-down-mini .cart_list {
	width: 100%;
	padding: 0 !important;
	max-height: 450px !important;
	overflow-y: auto;
}

.custom-drop-down ul li {
	cursor: pointer;
}

.custom-drop-down-mini ul li {
	cursor: pointer;
}

.custom-drop-down ul li:hover {
	cursor: pointer;
	background: #ffff;
}

.custom-drop-down ul li a:hover {
	cursor: pointer;
	color: #fc9c45;
}

.custom-drop-down-mini ul li:hover {
	cursor: pointer;
	background: #ffff;
}

.cart_list li {
	display: inline-block;
	width: 100%;
}

.dropdown-menu .cart_list li a i {
	width: auto;
}

.navbar-nav .dropdown-menu.cart_box {
	width: 320px;
	position: absolute !important;
	-webkit-transform: scale(0) !important;
	transform: scale(0) !important;
	-webkit-transform-origin: -webkit-calc(100% - 30px) 0;
	transform-origin: calc(100% - 30px) 0;
	display: block;
	transition: all 0.25s ease-in-out;
	padding: 0;
	top: 100% !important;
	left: auto !important;
	right: 0;
}

.navbar-nav .dropdown-menu.cart_box.show {
	-webkit-transform: scale(1) !important;
	transform: scale(1) !important;
}

.cart_list li {
	border-bottom: 1px solid #dddddd;
	padding: 10px;
	width: 100%;
}

.item_remove {
	float: right;
	margin-left: 5px;
	color: #333 !important;
}

.cart_list img {
	border: 1px solid #ddd;
	background-color: #ffffff;
	float: left;
	margin-right: 10px;
	max-width: 80px;
}

.cart_list a {
	font-size: 14px;
	vertical-align: top;
	padding: 0 !important;
	text-transform: capitalize;
	color: #292B2C;
	font-weight: 600;
}

.cart_quantity {
	display: table;
	margin-top: 5px;
	font-weight: 500;
}

.cart_total .cart_amount {
	float: right;
	color: #F32B56;
}

.cart_box .cart_list {
	width: 100%;
	padding: 0 !important;
	max-height: 242px;
	overflow-y: auto;
}


.primary-bg {
	background-color: #0b3388;
}

.custom-input-group {
	display: flex;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.custom-input-group:focus-within {
	transform: translateY(-2px);
}

.custom-input-group input {
	flex-grow: 1;
	padding: 0 20px;
	border: 2px solid #ced4da;
	border-right: none;
	border-radius: 8px 0 0 8px !important;
	outline: none;
	transition: all 0.3s ease;
}

.u-sidebar .input-group input {
	border-radius: 0px 20px 20px 0px !important;
}

.custom-input-group input:focus {
	border-color: #80bdff;
}

.custom-input-group-append {
	display: flex;
}

.custom-input-group button {
	background-color: #0b3388;
	color: white;
	border: none;
	padding: 0 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	border-radius: 0 4px 4px 0;
}

.custom-input-group button:hover {
	background-color: #0b338884;
}

.custom-input-group button:active {
	background-color: #0b338884;
	transform: scale(0.98);
}
.image-container{
	max-height: 165px;
	min-height: 150px;
	overflow: hidden;
	position: relative;
}
.image-container.small-card{
	max-height: 145px;
	min-height: 120px;
}
.image-container img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: auto !important;
	object-fit: cover;
}
.custom-btn{
	
	border: none;
	padding: 8px 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	border-radius: 5px;
}

.custom-btn.primary{
	background-color: #0b3388;
	color: white;
}