﻿#updatepanelCartView {
	top: 0;
	left: 0;
	width: 50%;
	background-color: lightgray;
	display: none;
}
.modalSpinner {
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	z-index: 99;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	min-height: 100%;
	width: 100%;
	border: none;
}
.loadingSpinner {
	width: 60px;
	height: 60px;
	display: none;
	position: fixed;
	background-color: White;
	z-index: 999;
}
/* -----------------------------*/
/*     Simo LIGHTBOX
/* -----------------------------*/
#simoLbOverlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: black url(Images/loading.gif) no-repeat scroll center center;
}
#simoLightbox {
	position: fixed;
	padding: 12px 12px 12px 12px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #FFF;
}
.simoLightbox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	background-image: url('Images/lightbox_sprite.png');
}
/* ---------------------------*/
/*      Dynamic label
/* ---------------------------*/
div.dynlabel {
    display: block;
    height: 25px;
    margin: 0px 0px 20px;
    color: #f00;
    font: 12em;
    position: relative;
}
div.nolabel {
	display: block;
	height: 32px;
	margin: 0px 0px 15px;
	color: #f00;
	font: 12px;
}
/* Form-Popup */
div.dynlabel label {
	position: absolute;
	left: 0;
	background-color: hsla(0,0%,93%,1.00);
	border: 1px solid hsla(0,0%,71%,1.00);
	padding: 3px 10px;
	font-weight: bold;
	-webkit-backface-visibility: hidden;
	top: 0; /* initial top position of label relative to dynamiclabel container */
	-moz-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	-webkit-transition: all 0.4s ease-in-out; /* Safari doesn't seem to support cubic-bezier values beyond 0 to 1, so use keyword value instead */
	-o-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	opacity: 0;
	z-index: -1;
}
div.nolabel *:focus, div.dynlabel *:focus { background-color: hsla(68,56%,95%,0.20); }
div.dynlabel *:focus + label {
	opacity: 1;
	z-index: 100;
	top: -33px;
	color: #878787;
} /* Post top position of label on focus relative to dynamiclabel container */


