.gallery-thumbnail-container {
	display: flex;
	flex-wrap: wrap;
	margin-top: 4px;
}

.gallery-thumbnail-container .imagebox {
	flex: 1 1 300px;
	max-width: 380px;
	min-width: 300px;
	margin-bottom: 20px;
	padding: 0 10px;
}
.imagebox .thumb {
	margin: 0;
}
.imagebox img {
	width: 100%;
}

.imagebox-mob-preview {
	max-width: 100%;
	margin-bottom: 15px;
	font-size: 0;
	line-height: 0;
	position: relative;
}
.imagebox-mob-preview-prev, .imagebox-mob-preview-next {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 50px;
    background-color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.imagebox-mob-preview-prev {
    left: 0;
}
.imagebox-mob-preview-next {
    right: 0;   
}
.imagebox-mob-preview-prev::before {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.imagebox-mob-preview-next::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.imagebox-mob-preview img {
	width: 100%;
}
.gallery-thumb-slider-container {
	position: relative;
	max-width: 100%;
}
.gallery-thumb-slider {
	width: 100%;
	overflow-x: scroll;
	overflow-y: hidden;
	height: auto;
	white-space: nowrap;
	display: flex;
	font-size: 0;
}
.imagebox-mob {
	opacity: 0.5;
	display: inline-block;
	float: none;
	margin: 0 10px 0 0;
}
.gallery-scroll-left, .gallery-scroll-right {
	position: absolute;
	top: 0px;
	height: 100%;
	width: 30px;
	background-color: white;
	opacity: 0.7;
	cursor: pointer;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gallery-scroll-left {
	left: 0px;
}
.gallery-scroll-right {
	right: 0px;
}
.imagebox-mob .thumb {
	cursor: pointer;
	max-width: 120px;
}
.imagebox-mob p {
	width: 100%;
	white-space: normal;
}

.imagebox-mob.active {
	opacity: 1;
}
.imagebox-mob-preview p {
	width: 100%;
	margin: 0;
	padding: 0;
}
@media (max-width: 767px) {
	.imagebox-mob .thumb {
		height: 80px;
	}
	.imagebox-mob-preview-prev, .imagebox-mob-preview-next {
        width: 40px;
        font-size: 3rem;
    }
}