
/* dialog box
    Use in product description
    la Salvarea unui produs in produse notate
*/
#dialog{
	display: none;
	z-index: 999;
	position: absolute;
	background-color: #eee;
	padding: 10px;
	border-width: 2px 2px;
	border-color: gray;
	border-style: solid;
	text-align: center;
	overflow: hidden;
}

		/* image container will display only horizontal scrollbar */
		#dialog .image{
			overflow-y: hidden;
			overflow-x: auto;
		}
			/* center images table (if more then one image is shown) */
			#dialog .image table{
				margin: auto;
			}

		/* text beneath image */
		#dialog .text{
            font-size: 18px;
            margin-top: 5px;
            padding-bottom: 3px;
		}

        #dialog .dialogBtn{
            text-align:center;
        }

		/* dialog buttons */
		#dialog input{
			color: white;
			background-color: #94b4e6; /*buton color */
			border: 1px #ccc solid;
			width: 80px;
			height: 20px;
			margin: 18px 5px 0px 0px;
			font-size: 10px;
		}


/* shaded div */
#shade{
	z-index: 998;
	display: none;
	position: absolute;
	background-color: black;
	width: 100%;
	height: 100%;
}


