.product-image img {
    min-height: 160px;
    max-height: 160px;
}

.details-preview img {
    min-height: 400px;
    max-height: 400px;
}

.details-thumb img {
    min-height: 80px;
    max-height: 80px;
}

.single-line-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}



/*css for loading div*/

#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.8);
    z-index:9999;
    display:none;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after {
    content:'';
    display:block;
    position:absolute;
    left:50%;top:50%;
    width:100px;height:100px;
    border-style:solid;
    border-color:black;
    border-top-color:transparent;
    border-width: 1px;
    border-radius:50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}

