﻿#shopping-form .dropdown-menu.show {
	display: flex;
	align-items: center;
}

.title-info {
	background-color: #e5a1263b;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 2px;
	border-radius: 5px;
	height: 36px;
	width: 100%;
}

	.title-info .title-content {
		display: inline-flex;
	}

.icon-title {
	margin-left: 5px;
	margin-right: 8px;
	color: #f28c30;
}

.box-title {
	font-size: 15px;
	color: #f28c30;
	font-weight: 600;
	margin: 0;
	padding: 0;
}

.go-corner-right, .go-corner-left {
	display: flex;
	align-items: center;
	justify-content: left;
	position: absolute;
	height: 25px;
	font-size: 14px;
	overflow: hidden;
	top: 0px;
	background-color: #f39c12;
	display: flex;
	justify-content: center;
	align-items: center;
}

.go-corner-right {
	width: 45px;
	height: 25px;
	padding-left: 0px;
	top: 0.4%;
	right: 0.2%;
	background-color: rgba(254, 238, 234, 1);
	border-radius: 0 4px 0px 4px;
	border-left: 0.2px solid #f39c12;
	border-bottom: 0.2px solid #f39c12;
}

.go-corner-left {
	width: 70px;
	height: 25px;
	left: 5.2px;
	border-radius: 4px 0px 4px 0;
	top: 0.4%;
}

.go-arrow {
	margin: -4px;
	color: white;
}

.card2 {
	background: linear-gradient(to left top, rgba(248, 197, 151, 0.8), rgba(255, 214, 115));
	border-radius: 4px;
	padding: 2rem 10px 0;
	margin: 0 5px 5px;
	margin-bottom: 0px;
	text-decoration: none;
	border: 0.1px solid #f39c12;
	cursor: pointer;
	height: 145px;
	width: 98%;
	--background-checkbox: #f39c12;
}

	.card2.active {
		transition: all 0.2s ease-out;
		box-shadow: 0 4px 8px rgba(38, 38, 38, 0.2);
		top: -4px;
		background: white;
	}

	.card2:hover {
		transition: all 0.2s ease-out;
		box-shadow: 0 4px 8px rgba(38, 38, 38, 0.2);
		top: -4px;
		border: 1px solid #ccc;
		background: white;
	}

.card2-title {
	font-size: 16px;
	font-weight: 600;
}

.card-container {
	display: flex;
	flex-wrap: wrap;
	padding-top: 10px;
	/*overflow: hidden auto;*/
}

	.card-container > div {
		padding: 0;
	}

.card2_input {
	display: block;
	-webkit-appearance: none;
}

	.card2_input:checked ~ .card2_body .card2_body-cover-checkbox {
		--check-bg: var(--background-checkbox);
		--check-border: #fff;
		--check-scale: 1;
		--check-opacity: 1;
	}

	.card2_input:disabled ~ .card2_body {
		cursor: not-allowed;
		opacity: 0.5;
	}

.card2_body-cover-checkbox {
	background: var(--check-bg, var(--background-checkbox));
	border: 2px solid var(--check-border, #fff);
	position: absolute;
	right: 0.1rem;
	top: 0.1rem;
	z-index: 1;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	opacity: var(--check-opacity, 0);
	transition: transform var(--transition), opacity calc(var(--transition) * 1.2) linear;
	transform: scale(var(--check-scale, 0));
	display: flex;
	justify-content: center;
	align-items: center;
}

.card2_body-cover-checkbox--icon {
	font-size: 15px;
	color: var(--stroke-color, #fff);
}

#package .card2 {
	padding-top: 0px;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	height: 90px;
	padding: 0px;
}

#package .price-info {
	color: #0a0a0a !important;
	display: block;
	padding-bottom: 5px;
	padding-top: 9px;
	font-size: 13px;
	text-align: center;
	font-weight: 600;
}

	#package .price-info p.price-title {
		margin-bottom: 0px;
	}

	#package .price-info p.price-describe {
		margin-bottom: 5px;
		font-size: 14px;
	}

#package .price-discount {
	display: flex;
	padding-top: 4px;
	margin: 0;
}

	#package .price-discount .discount-text {
		float: left;
		font-size: 12px;
		color: #fff;
		width: 49%;
		padding-left: 10px;
	}

	#package .price-discount .discount-value {
		float: right;
		font-size: 12px;
		color: #fff;
		width: 49%;
		text-align: right;
		font-weight: 600;
		padding-right: 10px;
	}

#package.card-container {
	max-height: 200px !important;
}

/* Màn hình từ 767px đến 1024px */
@media (min-width: 767px) and (max-width: 1024px) {
	#products > .col-md-2,
	#package > .col-md-2 {
		max-width: 50%;
		flex: 0 0 50%;
	}

	.card-container {
		overflow: hidden auto;
		max-height: 270px;
	}
}

/* Màn hình từ 1025px đến 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
	#products > .col-md-2,
	#package > .col-md-2 {
		max-width: 20%;
		flex: 0 0 20%;
	}
}

/* Màn hình lớn hơn 1280px */
@media (min-width: 1281px) {
	#products > .col-md-2,
	#package > .col-md-2 {
		max-width: 20%;
		flex: 0 0 20%;
	}
}

/* Màn hình dưới 767px */
@media (max-width: 767px) {
	#package > .col-md-2 {
		max-width: 49.5%;
		flex: 0 0 49.5%;
	}

	#package.card-container {
		overflow: hidden auto;
		max-height: 295px !important;
	}
}

.card2_body header {
	height: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	flex-direction: column;
}

.add-to-cart-buy-now-btn {
	text-align: center;
	border: 0;
}

	.add-to-cart-buy-now-btn.vang {
		background-color: #ffb916;
		min-width: 160px;
	}

	.add-to-cart-buy-now-btn.cam {
		min-width: 168px;
	}


.pPrice {
	font-size: 20px;
	line-height: 28px;
	color: #f57224;
	font-weight: 500;
	margin-bottom: 4px;
	display: flex;
	align-items: baseline;
}

	.pPrice .discount-price {
		text-decoration: line-through;
		color: #757575;
		padding-right: 10px;
		font-size: 19px;
	}

.footer-info {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 10px;
}

/*Thông tin khách hàng*/
.mod-address-book {
	background-color: #fff;
	padding: 20px;
	/*min-height: 200px;*/
}

	.mod-address-book .tag-work {
		background-image: linear-gradient(39deg,#0094b6 1%,#5bbbce 97%);
	}

	.mod-address-book .tag-home {
		background-image: linear-gradient(-143deg,#ff7b53,#f28c30);
	}

	.mod-address-book .mod-address-item-tag {
		border-radius: 8px;
		color: #fff;
		font-size: 9px;
		display: inline-block;
		height: 15px;
		text-align: center;
		vertical-align: text-bottom;
		line-height: 15px;
		margin-right: 5px;
		padding: 1px 7px;
	}

#sidebar-content .choose-address-wrapper .address-info-wrapper .address-info-content {
	margin-bottom: 12px;
}

.choose-address-wrapper {
	padding: 10px;
	padding-top: 0px;
}

	.choose-address-wrapper .address-info-wrapper .address-info-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 12px 0 12px 12px;
		border: 1px solid #dadada;
		border-radius: 4px;
		width: 100%;
		min-height: 90px;
	}



		.choose-address-wrapper .address-info-wrapper .address-info-content .action {
			margin-right: 12px;
		}

			.choose-address-wrapper .address-info-wrapper .address-info-content .action .next-checkbox {
				width: 18px;
				height: 18px;
			}

				.choose-address-wrapper .address-info-wrapper .address-info-content .action .next-checkbox.checked .next-checkbox-inner {
					border-color: #0097b8;
					background-color: #0097b8;
					color: #fff;
				}

		.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .titleMobile {
			margin-bottom: 6px;
		}

			.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .titleMobile .title {
				font-size: 14px;
				color: #333;
				line-height: 19px;
				font-weight: 500;
			}

			.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .titleMobile .mobile {
				font-size: 16px;
				color: #333;
				line-height: 19px;
				margin-left: 12px;
			}

		.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .addressInfo {
			font-size: 14px;
			/*color: #212121;*/
			letter-spacing: 0;
			line-height: 21px;
			margin-bottom: 6px;
		}

		.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .postcode {
			font-size: 12px;
			color: #757575;
			/*margin-bottom: 12px;*/
		}

		.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .mod-address-book-default {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			margin-bottom: 6px;
		}

			.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .mod-address-book-default .mod-address-book-latitude {
				border: 1px solid #f57224;
				border-radius: 4px;
				font-size: 12px;
				color: #f57224;
				line-height: 14px;
				padding: 5px 10px;
				margin-right: 6px;
				min-width: 93px;
				text-align: center;
			}

				.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .mod-address-book-default .mod-address-book-latitude:hover,
				.choose-address-wrapper .address-info-wrapper .address-info-content .right-info .mod-address-book-default .mod-address-book-latitude.active {
					color: #fff !important;
					background-color: #f57224;
				}

.mod-address-drawer-hd {
	height: 28px;
	line-height: 28px;
	margin-bottom: 15px;
}

.choose-address-wrapper .mod-address-drawer-hd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 30px;
}

	.choose-address-wrapper .mod-address-drawer-hd .choose-address-title {
		font-size: 18px;
		color: #212121;
	}

.mod-address-drawer-hd a {
	color: #1a9cb7;
}

.choose-address-wrapper .mod-address-book-ft {
	text-align: center;
}

.mod-address-book-ft {
	margin-top: 15px;
}

	.mod-address-book-ft button {
		font-size: 14px;
		min-width: 150px;
		height: 40px;
		line-height: 40px;
		margin-left: 12px;
		border-radius: .25rem;
	}

/*Thông tin khách hàng*/
.address-info-checkbox input[type="radio"] {
	height: 15px;
	width: 15px;
}

#profileChoice input[type=radio] {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	margin: 0;
}

.mod-address-tag-item {
	background: #f8f8f8;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	color: #333;
	padding: 13px 20px;
	font-size: 14px;
	font-weight: 600 !important;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.mod-address-tag-work {
	background: rgba(0,148,182,.02);
	border: 1px solid #0094b6;
	-webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,.12);
	box-shadow: 0 4px 12px 0 rgba(0,0,0,.12);
	color: #0094b6;
}

	.mod-address-tag-work.active {
		background-image: linear-gradient(39deg,#0094b6 1%,#5bbbce 97%);
		color: white;
	}


.mod-address-tag-home {
	background: rgba(255,102,73,.05);
	border: 1px solid #f28c30;
	-webkit-box-shadow: 0 4px 12px 0 rgba(0,0,0,.12);
	box-shadow: 0 4px 12px 0 rgba(0,0,0,.12);
	color: #f28c30;
}

	.mod-address-tag-home.active {
		background-image: linear-gradient(-143deg,#ff7b53,#f28c30);
		color: white;
	}

.mod-address-tag-icon {
	width: 15px;
	height: 15px;
	display: inline-block;
	background-size: contain;
	margin-right: 10px;
	vertical-align: bottom;
	background-repeat: no-repeat;
	background-position: 50%;
}

.form-group.error input, .form-group.error textarea {
	border: 1px solid #f44336;
}

.form-group.error span:nth-child(2) {
	min-height: 16px;
	line-height: 16px;
	font-size: 12px;
	color: #f44336;
	display: block;
	margin-bottom: 0px;
	text-align: right;
}

#profileChoice .row > div {
	padding: 7.5px;
}

.modal-content {
	max-width: 100%; /* Đặt giá trị tối đa chiều rộng mong muốn, ví dụ 80% */
	margin: 0 auto; /* Căn giữa modal */
	transition: max-width 0.3s; /* Tạo hiệu ứng chuyển động */
}

#list_profile .address-info-content.active {
	border: 1px solid #f28c30;
}

span.error-message {
	height: 16px;
	display: block;
}

.form-row > .col, .form-row > [class*=col-] {
	margin-bottom: 0px;
}


#profileChoice .modal-content {
	transition: width 0.3s ease;
	width: 100%;
}

	#profileChoice .modal-content.collapse2 {
		width: 70%;
	}

#profileChoice modal-content.expand2 {
	width: 100%;
}

.right-info {
	font-size: 14px !important;
}

.table th {
	padding: 5px;
	font-size: 12px !important;
	text-align: center;
	text-transform: capitalize;
	height: auto;
}

#products .btn {
	display: block;
	position: absolute;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	bottom: -45px;
	right: -45px;
	background-color: #000;
}

#products .box_rotate {
	overflow: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

	#products .box_rotate:before {
		content: "";
		display: block;
		border-radius: 50%;
		width: 135px;
		height: 135px;
		position: absolute;
		bottom: -80px;
		right: -80px;
		box-sizing: border-box;
		border: 30px solid #f39c12;
	}

#products svg {
	width: 445px;
	height: auto;
	position: absolute;
	bottom: -242px;
	right: -244px;
	-moz-animation: rotate 8s linear infinite;
	-webkit-animation: rotate 8s linear infinite;
	animation: rotate 35s linear infinite;
}

#products text {
	font-size: 8px;
	letter-spacing: 1px;
	/*font-weight: bold;*/
	color: #fff;
}

@keyframes rotate {
	0% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}