/*minicart    =============================*/
.minicart {
	position: relative;
	cursor: pointer;
	width: 91px;
	display: inline-flex;
	z-index: 11;
}

.cart__text {
	display: inline-flex;
}

.cart__quantity {
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: #fa8200;
	border-radius: 50%;
	font-size: 10px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	right: 60px;
}

/*cart-content    =============================*/
.none {
	display: none;
}

.minicart__bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	visibility: hidden;
	z-index: 1;
}

.cart-content {
	cursor: default;
	position: absolute;
	right: 50px;
	background-color: #f0f0f0;
	border: 1px solid #e6e6e6;
	max-width: 500px;
	transform: translate(-50%, -50%) scale(0.1);
	visibility: hidden;
	top: 0;
	z-index: 10;
}

.cart-content.open {
	transform: translate(0, 0) scale(1);
	visibility: visible;
	top: 85px;
}

.minicart__bg.open {
	visibility: visible;
}

.cart-content__list {
	max-width: 500px;
	max-height: 350px;
	overflow-x: hidden;
	overflow-y: auto;
	padding-bottom: 15px;
}

.cart__product {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 25px 25px 0 25px;
}

hr {
	margin: 15px 0 0 0;
	height: 1px;
	width: 450px;
	background-color: #000;
}

/*cart-content  assem   =============================*/
.product__assem {
	display: flex;
	align-items: center;
}

.product__img {
	max-height: 150px;
	max-width: 150px;
	object-fit: cover;
	margin-right: 20px;
	border: 1px solid #323232;
}

.product__delete {
	width: 25px;
	min-width: 25px;
	height: 25px;
	border: none;
	padding: 0;
	background-image: url("../IMG/icon/icon_basketdelete.svg");
	background-color: #f0f0f0;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 15px 0 20px;
	background-size: cover;
}


/*cart-content  price   =============================*/
.product__price {
	display: flex;
}

.section {
	width: 150px;
	height: 80px;
}

.title {
	height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 200;
}

.value {
	height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
}

.currency {
	font-size: 18px;
	line-height: 18px;
}

.quantity__value {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.items__control {
	font-size: 35px;
	color: #3296fa;
	cursor: pointer;
}

/*cart-content  fullprice   =============================*/
.section__fullprice {
	display: flex;
	flex-direction: column;
	padding: 0 25px 25px 25px;
}

.shipping {
	display: inline-flex;
	justify-content: flex-end;
	border-bottom: solid 1px #323232;
	border-top: solid 1px #323232;
	padding: 15px 32px 15px 0;
	display: flex;
	align-items: flex-end;
}

.fullprice__title {
	font-size: 16px;
	font-weight: 200;
	line-height: 20px;
}

.fullprice {
	display: inline-flex;
	justify-content: flex-end;
	margin-right: 30px;
	padding: 15px 0;
}

.total__shipping,
.fullprice__value {
	width: 150px;
	justify-content: end;
	align-items: end;
}

.subtotal {
	font-size: 24px;
	font-weight: bold;
	line-height: 20px;
}

.section__btn {
	display: flex;
	justify-content: center;
}

.cart-content__btn {
	width: 350px;
	height: 50px;
	font-weight: 700;
	color: #fff;
	background-color: #3296fa;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.product__name-minicart {
	font-size: 16px;
	font-weight: 600;
	line-height: 25px;
}

/*cart__empty   =============================*/
.empty__wrapper {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.image__empty {
	margin: 50px 0;
}

.empty__txt {
	font-size: 16px;
	font-weight: bold;
	padding: 0 0 15px 0;
}

.empty__link {
	margin: 50px 0;
	color: #000;
	font-size: 20px;
	font-weight: bold;
}

/*media=============================    1920    */
@media (min-width: 1920px) {
	.cart-content {
		right: 10%;
	}
}

/*media_________________________________________600*/
@media (max-width: 600px) {
	.cart-content {
		right: 10px;
	}
}

/*media_________________________________________525*/
@media (max-width: 525px) {
	.cart-content.open {
		max-width: 95%;
	}

	.minicart__bg {
		min-width: 100%;
	}

	.product__delete {
		margin: 0 0 0 10px;
	}

	.shipping {
		padding-right: 25px;
	}

	.fullprice {
		margin-right: 25px;
	}
}

/*media_________________________________________500*/
@media (max-width: 500px) {
	.shipping {
		padding-right: 13px;
	}

	.fullprice {
		margin-right: 13px;
	}
}

/*media_________________________________________460*/
@media (max-width: 460px) {
	.shipping {
		padding-right: 5px;
	}

	.fullprice {
		margin-right: 5px;
	}
}

/*media_________________________________________440*/
@media (max-width: 440px) {
	.product__delete {
		margin: 0 0 0 10px;
		width: 35px;
	}

	.section {
		width: 120px;
	}

	h3 {
		font-size: 14px;
	}

	.shipping {
		padding-right: 25px;
	}

	.fullprice {
		margin-right: 25px;
	}
}

/*media_________________________________________426*/
@media (max-width: 426px) {
	.product__delete {
		width: 40px;
	}

	.minicart {
		width: 50px;
	}

	.cart__quantity {
		right: 19px;
	}

	.shipping {
		padding-right: 15px;
	}

	.fullprice {
		margin-right: 15px;
	}
}

/*media_________________________________________400*/
@media (max-width: 400px) {
	.product__delete {
		width: 45px;
	}

	.shipping {
		padding-right: 7px;
	}

	.fullprice {
		margin-right: 7px;
	}
}

/*media_________________________________________370*/
@media (max-width: 370px) {
	.section {
		width: 100px;
	}

	h3 {
		font-size: 12px;
	}

	.product__img {
		max-height: 100px;
		max-width: 100px;
	}

	.product__delete {
		width: 35px;
	}

	.shipping {
		padding-right: 9px;
	}

	.fullprice {
		margin-right: 9px;
	}
}

/*media_________________________________________330*/
@media (max-width: 330px) {
	.shipping {
		padding-right: 0;
	}

	.fullprice {
		margin-right: 0;
	}
}

/*media_________________________________________300*/
@media (max-width: 300px) {
	.section {
		width: 80px;
	}
}