.assembly {
	background-color: #eab74e;
    background-image: url(/image/bg-white.png);
    padding: 24px;
    padding-bottom: 0px;
    overflow: hidden;
}
.assembly__content {
	background-color: #fff;
	padding: 16px;
}
.assembly__item {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ececec;
	padding: 8px;
	min-height: 80px;
}
.assembly__item:hover {
	transition: all 0.4s ease-in-out;
    background-color: #ececec;
}
.assembly__item-checkbox {
	position: relative;
	width: 4px;
}
.assembly__item-checkbox span {
	width: 16px;
	height: 16px;
	border: 1px solid #0372d9;
	border-radius: 5px;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: #fff
}
.assembly__item-checkbox input[type=checkbox]:checked ~ span {
	background-image: url(/image/assembly.svg);
	background-repeat: no-repeat;
	background-position: center;
}
.assembly__item-checkbox input[type=checkbox] {
	position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0,0,0,0);
}
.assembly__item-img {
	max-width: 64px;
}
.assembly__item-img img {
	max-width: 100%;
	display: block;margin: 0px auto;
}
.assembly__item-title {
	max-width: 154px;
	white-space: pre;
	color: #222;
	font-size: 12.5px;
	font-weight: 300;
	padding: 0px 10px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.assembly__item-price {
	color: #222;
	font-size: 20px;
	font-weight: 700;
}
.assembly__total {
	margin: 24px -9px;
}
.assembly__total_price {
	color: #222;
	font-size: 18px;
	font-weight: 700;
}
.assembly__total_price span {
	font-size: 32px;
	vertical-align: middle;
}
.assembly__item-btn {
	min-width: 128px;
	text-align: right;
}
.assembly__item-remove {
	color: #0372d9;
	font-size: 14px;
	font-weight: 400;
}
.assembly__item-remove:hover {
	transition: all 0.4s ease-in-out;
	color: #024a8e;
}

@media (max-width: 767px) {
    .assembly__total-button {
        text-align: center;
    }
}

/* @media (max-width: 600px) {
    .assembly__item {
        justify-content: flex-start;
    }

    .assembly__item-price {
        width: 44%;
        font-size: 16px;
    }

    .assembly__item-btn {
        margin-left: auto;
    }

    .assembly__item-img {
        margin-left: 15px;
    }

    .assembly__item-title {
        max-width: calc(100% - 85px);
        margin-left: auto;
    }

    .assembly__total_price {
        text-align: center;
        font-size: 14px;
        margin: 0px -30px;
    }

    .assembly__total_price span {
        font-size: 20px;
    }
} */
