.dropdown_cart ul, .dropdown_cart ul li {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}

.dropdown_cart > ul {
	display: flex;
	height: 50px;
	padding: 10px 0;
}

.dropdown_cart > ul > li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 10px;
	border-left: 1px solid #fff;
}

.dropdown_cart > ul > li:last-child {
	padding-right: 0;
}

.dropdown_cart > ul > li:first-child {
	padding-left: 0;
	border-left: none;
}

.dropdown_cart > ul > li > a {
	text-transform: uppercase;
	color: #fff;
}

.mini_cart {
	display: none;
	position: absolute;
	z-index: 999999999999;
	width: 400px;
	padding-top: 10px;
	height: 400px;
}

.mini_cart.show {
	display: block;
}

.mini_cart .mini_cart_inner {
	background-color: #fff;
	box-shadow: 0 0 5px #ccc;
	padding: 20px;
 	display: flex;
	flex-direction: column;
}

.mini_cart .mini_cart_inner .woocommerce-mini-cart.product_list_widget  {
    margin: 0;
    padding: 0;
}

.mini_cart .mini_cart_inner .elementor-menu-cart__products, .mini_cart .mini_cart_inner .woocommerce-mini-cart.product_list_widget {
	height: calc(100vh - 320px);
	max-height: 400px;
	overflow-y: scroll;
}

.dropdown_cart .cart_count {
	border: 2px solid #fff;
	padding: 4px;
	font-size: 12px;
	line-height: 12px;
	vertical-align: bottom;
	display: inline-block;
	margin-left: 5px;
	position: relative;
	min-width: 24px;
	text-align: center;
}

.dropdown_cart .cart_count::after {
    transition: height 0.1s ease-out;
    bottom: 100%;
    margin-bottom: 0;
    margin-left: -7px;
    height: 8px;
    width: 14px;
    left: 50%;
    content: " ";
    position: absolute;
    pointer-events: none;
    border: 2px solid #fff;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    border-bottom: 0;
}

@media(max-width: 800px){
	.mini_cart {
		padding-top: 0;
		height: 100vh;
		width: 75vw;
	}
	
	.mini_cart_inner {
		height: 100vh; /* Fallback for browsers that do not support Custom Properties */
  		height: calc(var(--vh, 1vh) * 100);
	}
	
	.mini_cart .mini_cart_inner .elementor-menu-cart__products, .mini_cart .mini_cart_inner .woocommerce-mini-cart.product_list_widget {
		height: auto;
		max-height: 2000px;
	}
}