.wccpp_composite_product select {
    width: 100%;
}
.wccpp_composite_product, .wccpp_product_thumbnail{
	margin-top:10px;
}
.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_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_checkboxes, .wccpp_radio_buttons{
    overflow: hidden;
    width: 100%;
}
span.wccpp_composite_title{
	font-size:26px;
}
.wccpp_accordion span.wccpp_composite_title{
	font-size:16px;
}
.wccpp_accordion .wccpp_checkboxes, wccpp_accordion .wccpp_radio_buttons, .wccpp_accordion .wccpp_product_thumbnail, .wccpp_accordion .wccpp_composite_product{
	margin: 5px;
}
.wccpp_accordion .wccpp_box_head{
	padding:5px;
}
.wccpp_box_head span {
  margin-left: 10px;
	font-weight:500;
}
.wccpp_box_head span.dashicons {
  margin-right: 10px;
}
span.wccpp_open{
    cursor: pointer;
	line-height:1.5;
    float: right;
}
.wccpp_product{
	position: relative;
	cursor:pointer;
    clear: both;
    overflow: hidden;
    margin-bottom: 10px;
}
.wccpp_product .wccpp_close{
    display: none;
    overflow: hidden;
    width: 100%;
}
.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%;
}
@keyframes wccpp_spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}