#modalbox {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.6);
    padding: 12px 10px;
    position: fixed;
    width: 500px;
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
}
#modalbox-shadow {
    background: none repeat scroll 0 0 #000;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 998;
}
.modalbox-close {
	background: url(../../images/icon-close.png) no-repeat center center #FFF;
	width: 31px;
	height: 31px;
	position: absolute;
	top: -15px;
	right: -15px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	cursor: pointer;
}
.modalbox {
	min-height: 100px;
}
.modalbox h4 {
	text-transform: uppercase;
	margin-bottom: 5px;
	color: #009adc;
}
.modalbox .closebutton {
    background: none repeat scroll 0 0 #888888;
    color: #ffffff;
    font-family: Tahoma;
    font-size: 11px;
    padding: 5px 20px;
}
/* simple cart */
.simple-cart-form {
    width: 100%;
}
.simple-cart-form h4 {
    font-size: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px !important;
}
.simple-cart {
    width: 100%;
}
.simple-cart label {
    font-weight: bold;
    color: #333;
}
.simple-cart .field-wrap {
    position: relative;
}
.simple-cart .field {
    width: 100%;
    border: 1px solid #ddd;
    padding: 8px;
    margin: 5px 0;
    box-shadow: 0 0 0 2px #f4f4f4;
}
.simple-cart .submit {
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: #fa811f;
    width: 120px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: none;
}
.simple-cart span.errorfield {
    display: block;
    font-size: 11px;
    line-height: 16px;
    color: #666;
    background: #ffe8f4;
    border: 1px solid #e0bfd0;
    border-radius: 3px;
    padding: 6px 10px;
    min-width: 200px;
    width: 50%;
    position: absolute;
    top: 8px;
    right: 3px;
}
.simple-cart span.errorfield2 {
    display: block;
    font-size: 11px;
    line-height: 16px;
    color: #666;
    background: #ffe8f4;
    border: 1px solid #e0bfd0;
    border-radius: 3px;
    padding: 6px 10px;
    min-width: 200px;
    width: 100%;
    margin-top: 5px;
}