
.product-viewer-container {
    position: relative;
}

.controls {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
	position: relative;
    /*top: -40px;*/
}

.controls button {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 5px 20px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 16px;
}

.product-viewer {
    width: 1000px;
    height: 700px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.product-viewer-small {
    width: 380px;
    height: 400px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.product-viewer img {
    width: auto;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease;
	display: block;
	margin: 0 auto;
}

.product-viewer-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.1s ease;
}

.product-360-small {
    float: left;
    margin-right: 10px;
	border: 1px solid #ddd;
}

#bigger-button {
	padding-top:8px;
}

@media only screen and (max-width: 1080px) {
	#bigger-button {
		display:none;
	}
	.product-360-small {
		display:none;
	}
}
