.notice {
    visibility: hidden;
    max-width: 50px;
    height: 50px;
    /*margin-left: -125px;*/
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    z-index: 1;
    left: 0;right:0;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}
.notice .notice-icon{
	width: 50px;
	height: 50px;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    background-color: #111;
    color: #fff;
	font-size:30px !important;
}
.notice .notice-icon .fa{
	display: block;
}
.notice .notice-desc{
    color: #fff;
    padding: 16px 12px;
    overflow: hidden;
	white-space: nowrap;
}

.notice.show {
    visibility: visible;
    -webkit-animation: notice-fadein 0.5s, notice-expand 0.5s 0.5s,notice-stay 3s 1s, notice-shrink 0.5s 2s, notice-fadeout 0.5s 2.5s;
    animation: notice-fadein 0.5s, notice-expand 0.5s 0.5s,notice-stay 3s 1s, notice-shrink 0.5s 4s, notice-fadeout 0.5s 4.5s;
}
.notice.success{background-color:#64ce83}
.notice.success .notice-icon{background-color:#3da95c;color:#fff;padding:10px}
.notice.success .notice-body{color:#fff;padding:10px}
.notice.success .notice-body:hover{visibility:visible!important}

.notice.info{background-color:#3ea2ff}
.notice.info .notice-icon{background-color:#067cea;color:#fff;padding:10px}
.notice.info .notice-body{color:#fff;padding:10px}
.notice.info .notice-body:hover{visibility:visible!important}

.notice.warning{background-color:#ff7f48}
.notice.warning .notice-icon{background-color:#f44e06;color:#fff;padding:10px}
.notice.warning .notice-body{color:#fff;padding:10px}
.notice.warning .notice-body:hover{visibility:visible!important}

.notice.error{background-color:#e74c3c}
.notice.error .notice-icon{background-color:#ba2c1d;color:#fff;padding:10px}
.notice.error .notice-body{color:#fff;padding:10px}
.notice.error .notice-body:hover{visibility:visible!important}

@-webkit-keyframes notice-fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes notice-fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes notice-expand {
    from {min-width: 50px} 
    to {min-width: 360px}
}

@keyframes notice-expand {
    from {min-width: 50px}
    to {min-width: 360px}
}
@-webkit-keyframes notice-stay {
    from {min-width: 360px} 
    to {min-width: 360px}
}

@keyframes notice-stay {
    from {min-width: 360px}
    to {min-width: 360px}
}
@-webkit-keyframes notice-shrink {
    from {min-width: 360px;} 
    to {min-width: 50px;}
}

@keyframes notice-shrink {
    from {min-width: 360px;} 
    to {min-width: 50px;}
}

@-webkit-keyframes notice-fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 60px; opacity: 0;}
}

@keyframes notice-fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 60px; opacity: 0;}
}

.cart-view h4.prod-title{
	display:inline-block;
	margin-left:10px;
}
.cart-empty h3{
	color: #c53030;
	margin: 100px auto;
}
.entertainment-list{
	list-style:none;
}
.entertainment-list li{
	width: 50%;
	float: left;
}

.errmsg{
	color:#F00;
	font-size:15px;
	display:none;
}
.errmsg.show{
	/*margin-top: -20px;
	margin-bottom: 20px;*/
	display:block;
}