.btm-myaccount-cartnotice-form {
	margin: 24px 0;
}

.btm-myaccount-cartnotice {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 20px;
	background: #f6f9ff;
	border: 1px solid #d8e3ff;
	border-radius: 6px;
	font-size: 15px;
	color: #2a2522;
}

.btm-myaccount-cartnotice-text {
	flex: 1 1 auto;
	min-width: 200px;
}

.btm-myaccount-cartnotice-msg {
	font-size: 15px;
	color: #2a2522;
}

.btm-myaccount-cartnotice-plan {
	font-weight: 700;
	color: #1d1d1d;
}

.btm-myaccount-cartnotice-price {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.btm-myaccount-cartnotice-price-sale {
	font-weight: 600;
	color: #c2460b;
}

.btm-myaccount-cartnotice-price-regular {
	text-decoration: line-through;
	opacity: 0.6;
}

.btm-myaccount-cartnotice-price-normal {
	font-weight: 600;
}

.btm-myaccount-cartnotice-remove {
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1;
	color: #999;
	cursor: pointer;
	padding: 0 8px;
	margin-left: 8px;
}

.btm-myaccount-cartnotice-remove:hover {
	color: #c2460b;
	background: transparent;
}

.btm-myaccount-cartnotice-checkout a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #0b6ee0;
	color: #fff;
	padding: 8px 14px;
	border-radius: 4px;
	font-weight: 500;
	text-decoration: none;
	font-size: 14px;
	white-space: nowrap;
}

.btm-myaccount-cartnotice-checkout a:hover {
	background-color: #095ec0;
	color: #fff;
}

@media (max-width: 600px) {
	.btm-myaccount-cartnotice {
		flex-direction: column;
		align-items: flex-start;
	}

	.btm-myaccount-cartnotice-checkout {
		width: 100%;
		margin-top: 12px;
	}

	.btm-myaccount-cartnotice-checkout a {
		width: 100%;
	}
}

