.themodal-lock {
	/* when modal is opened we're removing scrollbars from the main content */
	overflow: hidden;
}

.themodal-overlay {
	/* overlay will stay fixed and will take all the space available */
	position: fixed;
	bottom: 0;
	left: 0;
	top: 0;
	right: 0;
	z-index: 99999;

	/* if modal content doesn't fit inside the overlay, display scrollbars */
	overflow: auto;

	/* allow one-finger iPad scrolling */
	-webkit-overflow-scrolling: touch;

}

/* fix for iPad glitches */
.themodal-overlay > * {
	-webkit-transform: translateZ(0px);
}

.themodal-overlay {
	background: rgba(0, 0, 0, 0.5);
	/* IE6–IE8 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #7F000000, endColorstr = #7F000000);
	zoom: 1;
}


/* modal box style, can be anything you want */
.modal-galleryProduct {
    background: #eee;
    width: 600px;
    margin-top:  80px;
    margin: 20px auto;
    z-index: 9999999999;
    border: 3px solid #672a32;
}
.row-body{
	padding: 20px;
	padding-top: 68px;
}
.col-6{text-align: center;}
.x{padding-right: 10px; float: right}
#test-modal .title{padding-left: 15px; font-size: 16px}
.modal-galleryProduct .close {
    float: right;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
    background-color: #672a32;
    color: #fff;
    width: 100%;
}


