.gallery-container {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}

.bx-wrapper {
	border-radius: 6px;
	margin-bottom: 15px;
}
.bx-wrapper img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	text-align: center;
	cursor: pointer;
}
.bxslider img {
	border-radius: 6px;
}

.bx-wrapper .bx-prev,
.bx-wrapper .bx-next {
	background: none !important;
}
.bx-wrapper:hover .bx-controls-direction a:after {
	opacity: 1;
}
.spinner-wrapper {
	position: relative;
	height: 300px;
	width: 100%;
}


.spinner-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000000;
	display: inline-block;
	width: 80px;
	height: 80px;
}
.spinner-loader div {
	animation: spinner-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}
.spinner-loader div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #000;
	margin: -4px 0 0 -4px;
}
.spinner-loader div:nth-child(1) {
	animation-delay: -0.036s;
}
.spinner-loader div:nth-child(1):after {
	top: 63px;
	left: 63px;
}
.spinner-loader div:nth-child(2) {
	animation-delay: -0.072s;
}
.spinner-loader div:nth-child(2):after {
	top: 68px;
	left: 56px;
}
.spinner-loader div:nth-child(3) {
	animation-delay: -0.108s;
}
.spinner-loader div:nth-child(3):after {
	top: 71px;
	left: 48px;
}
.spinner-loader div:nth-child(4) {
	animation-delay: -0.144s;
}
.spinner-loader div:nth-child(4):after {
	top: 72px;
	left: 40px;
}
.spinner-loader div:nth-child(5) {
	animation-delay: -0.18s;
}
.spinner-loader div:nth-child(5):after {
	top: 71px;
	left: 32px;
}
.spinner-loader div:nth-child(6) {
	animation-delay: -0.216s;
}
.spinner-loader div:nth-child(6):after {
	top: 68px;
	left: 24px;
}
.spinner-loader div:nth-child(7) {
	animation-delay: -0.252s;
}
.spinner-loader div:nth-child(7):after {
	top: 63px;
	left: 17px;
}
.spinner-loader div:nth-child(8) {
	animation-delay: -0.288s;
}
.spinner-loader div:nth-child(8):after {
	top: 56px;
	left: 12px;
}
@keyframes spinner-loader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


.image-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.bxslider img,
.bxslider .default-picture {
	border-radius: 6px;
}

.hidden-image {
	display: none;
}
.bxslider-pager {
	text-align: center;
}
.bxslider-pager .bx-thumb-item {
	border-bottom: 4px solid #ccc;
	display: inline-block;
	float: none;
	height: 70px;
	margin: 0 2px;
	outline: medium none;
	overflow: hidden;
	position: relative;
	width: 100px;
}
.bxslider-pager .bx-thumb-item img {
	width: 100%;
	max-width: 100%;
	border-radius: 3px;
	opacity: 0.7;
	-webkit-transition: opacity 0.15s ease-in-out 0s;
	-moz-transition: opacity 0.15s ease-in-out 0s;
	-o-transition: opacity 0.15s ease-in-out 0s;
	transition: opacity 0.15s ease-in-out 0s;
}
.bxslider-pager .bx-thumb-item:focus {
	box-shadow: 0 0 2px #369;
	outline: none;
}
.bxslider-pager .bx-thumb-item.active {
	border-bottom: 4px solid #369;
}
.bxslider-pager .bx-thumb-item.active img,
.bxslider-pager .bx-thumb-item:hover img {
	opacity: 1;
}

@media (max-width: 640px) {
	.gallery-container .bx-wrapper {
		margin-bottom: 10px;
	}
	
	.bxslider-pager .bx-thumb-item {
		height: 48px;
		width: 64px;
	}
}