.text-right {
	text-align: right;
}

.bought_together_tbl img {
	max-width: 42px;
	max-height: 42px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
	margin-right: 15px;
}

.bought_together_tbl {
	border-top: 1px #eee solid;
}

.bought_together_tbl tbody td {
	background: transparent !important;
	border-bottom: 1px #eee solid;
}

.bought_together_tbl td {
	vertical-align: middle;
	text-align: left;
	padding: 10px;
}

.bought_together_tbl td.bt-price {
	text-align: right;
}

#bought-together-products-data {
	position: relative;
	padding-top:40px;
}

#bought-together-products-data.processing {
	opacity: 0.25;
}

#bought-together-products-data.processing:before {
	content: '';
	border: 4px solid #999;
	border-radius: 50%;
	border-top: 4px solid rgba(0, 0, 0, 0.9);
	width: 40px;
	height: 40px;
	left: calc(50% - 20px);
	top: calc(50% - 20px);
	position: absolute;
	-webkit-animation: spinn 2s linear infinite;
	animation: spinn 2s linear infinite;
}

.bt-items-container {
	display: flex;
	align-items: center;
}
@media (min-width:768px){
	.bt-items-container {
		flex-wrap: nowrap;
	}
	.bt-add-all-button button{
		margin-top:10px;
	}
}
@media (max-width:767.9px){
	.bt-items-container {
		flex-wrap: wrap;
	}
	.bt-items-container > div {
		margin-top:15px;
	}
	.bt-items-container > div img {
		max-width:60px;
	}
	.bt-add-all-button{
		clear:both;
		width:100%;
		display:flex;
		flex-wrap:wrap;
		align-items:center;
	}
	.bt-add-all-button:after{
		content:'';
		clear:both;
		display:block;
	}
	.bt-add-all-button button{
		margin-top:0;
	}
	.bt-add-all-button > span:first-child{
		padding-right:15px;
		padding-bottom:5px;
	}
}

.bt-items-container > div {
	text-align: center;
}
.bt-plus-icon{
	margin-right:10px;
	margin-left:10px;
	font-size:20px;
	font-weight:bold;
	color:#999;
}
.bt-add-all-button{
	margin-left:10px;
	text-align:left !important;
}
.bt-add-all-button > span{
	display:block;
}

.bt-list-items{
	padding:20px 0;
}
.bt-list-items label{
	display:block;
	margin:0 0 10px;
	padding:0;
}

#bought-together-add-to-cart{
	min-width:120px;
}

/* SPINNER */
@-webkit-keyframes spinn {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spinn {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}