
/* =========================================================================
/* ====== HEISENBERG'S GLOBAL INLINE ALERT ELEMENTS & STYLES
/* =======================================================================*/

.notify {
	border-radius: 3px;
	display: block;
	height: auto;
	margin: 0 0 15px 0;
	padding: 5px 15px;
}

.notify ul {
	padding: 0 30px;
}

.notify ul li {
	list-style: none;
}

.notify.success {
	background: #ECFFE1;
	border: 1px solid #B5F8A8;
	color: #7DAD54;
}

.notify.error {
	background: #FFE1E1;
	border: 1px solid #F6D0D0;
	color: #E56476;
}

.notify.warning {
	background: lightYellow;
	border: 1px solid #F9EB98;
	color: #B68926;
}

.notify.message {
	background: #DDE9F5;
	border: 1px solid #CCD7D3;
	color: #5AA4CE;
}

.no-product {
	color: #999;
	display: block;
	font-size: 16px;
	text-align: center;	
}

/* =========================================================================
/* ====== HEISENBERG'S GLOBAL POPUP ALERT ELEMENTS & STYLES
/* =======================================================================*/

.alert-overlay {
    background: rgba(0,0,0,0.8);
    height: 200px;
    left: 50%;
    margin-left: -100px;
    margin-top: -100px;
    padding: 55px 20px 0;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 200px;
    z-index: 9999;

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.alert-overlay .alert-msg {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 14px 0 0 0;
}

.alert-overlay .alert-msg-extra {
    color: #eee;
    font-size: 12px;
    font-weight: normal;
    padding: 0;
}

.alert-overlay .icon-check-sign {
    color: #99e118;
    font-size: 36px;
    text-align: center;
}

.alert-overlay .icon-warning-sign {
    color: #FC2D2D;
    font-size: 36px;
    text-align: center;
}

.alert-overlay .icon-warning-sign.alert-medium {
    color: #fce129;
    font-size: 36px;
    text-align: center;
}

.alert-overlay.show-alert {
    -webkit-animation: alertFadeIn 0.3s;
    -o-animation: alertFadeIn 0.3s;
    animation: alertFadeIn 0.3s;
}

.alert-overlay.hide-alert {
    -webkit-animation: alertFadeOut 0.3s;
    -o-animation: alertFadeOut 0.3s;
    animation: alertFadeOut 0.3s;
}

/* =========================================================================
/* ====== ADDITIONAL GLOBAL ALERT ELEMENTS & STYLES
/* =======================================================================*/

.slide-down-alert {
	position: fixed;
	top: -9999px;
	left: 0;
	right: 0;
	-webkit-transition: max-height 1s linear;
	-moz-transition: max-height 1s linear;
	-o-transition: max-height 1s linear;
	transition: max-height 1s linear;
	background: #fff;
	height: auto;
	border-bottom: 1px solid #ccc;
	box-shadow: 0px 1px 1px #ddd;
	padding:15px 0;
	z-index: 10000;
}

.slide-down-alert .alert-box{
	margin: 0 auto;
}

.alert-box a {
	color: #fff;
}

.reveal-modal {
	z-index:1000;
}

/* =========================================================================
/* ====== SINGLE PRODUCT "BACK" ALERT ELEMENTS & STYLES
/* =======================================================================*/

.continue-alert {
	background: #F3F3F3;
	display: block;
	height: 30px;
	margin: 8px 0 30px 0;
	padding: 0 10px;
}

.continue-alert a {
	color: #777;
	font-size: 12px;
	line-height: 30px;
}

.continue-alert a:hover {
	text-decoration: underline;
}

/* =========================================================================
/* ====== CSS3 ANIMATIONS KEY FRAME DECLARATIONS
/* =======================================================================*/

@keyframes alertFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes alertFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes alertFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-ms-keyframes alertFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@-o-keyframes alertFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes alertFadeOut {
    from { opacity:1; }
    to { opacity:0; }
}

@-webkit-keyframes alertFadeOut {
    from { opacity:1; }
    to { opacity:0; }
}

@-moz-keyframes alertFadeOut {
    from { opacity:1; }
    to { opacity:0; }
}

@-ms-keyframes alertFadeOut {
    from { opacity:1; }
    to { opacity:0; }
}

@-o-keyframes alertFadeOut {
    from { opacity:1; }
    to { opacity:0; }
}




