.wccpp_composite_product select {
    width: 100%;
}
.wccpp_product_with_thumbnail, .wccpp_product_selected{
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	cursor: pointer;
	display: flex;
}
.wccpp_product_with_thumbnail img, .wccpp_product_selected img{
	width: 100px;
}
.wccpp_composite_layout form {
    display: block !important;
}
.wccpp_product_info {
    margin-left: 10px;
}
.wccpp_load_product {
    position: relative;
}
.wccpp_clear_product {
    cursor: pointer;
    color: white;
    position: absolute;
    bottom: 0;
    right: 0px;
    background: #d00;
    font-size: 14px;
    padding: 0 5px;
}
.wccpp_product{
	position: relative;
	margin: 15px 0;
}
.wccpp_loading::before {
    content: '';
    position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	display: block;
	background: rgba(0, 0, 0, 0.3);
	z-index: 3;
}
.wccpp_loading::after {
    content: '';
    position: absolute;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: wccpp_spin 2s linear infinite;
    top: 20%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
	z-index: 5;
}
.product table.wccpp-summary {
    width: 100%;
	margin-top: 15px;
}
@keyframes wccpp_spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}