
#gritter-notice-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    z-index: 9999;
}

.gritter-item-wrapper {
    position: relative;
    margin: 0 0 10px 0;
    background: #000;
    background: rgba(0, 0, 0, 0.75);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.growl-primary {
    background: rgb(66, 139, 202);
}

.growl-success {
    background: rgb(92, 184, 92);
}

.growl-warning {
    background: rgb(240, 173, 78);
}

.growl-danger {
    background: rgba(217, 83, 79, 0.80);
}

.growl-info {
    background: rgba(91, 192, 222, 0.80);
}

.gritter-item {
    display: block;
    color: #eee;
    padding: 15px;
    font-size: 11px;
}

.gritter-item p {
    font-size: 16px;
    line-height: 1.2;
    padding: 0;
    margin: 0;
    word-wrap: break-word;
    color: #fff;
}

.gritter-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: url(../images/close-white.png) no-repeat center center;
    cursor: pointer;
    width: 10px;
    height: 11px;
    text-indent: -9999em;
    opacity: 0.5;
}

.gritter-title {
    color: #fff;
    font-size: 18px;
    padding: 0 0 7px 0;
    display: block;
    font-weight: bold;
}

.gritter-image {
    width: 48px;
    height: 48px;
    float: left;
}

.gritter-with-image,
.gritter-without-image {
    padding: 0;
}

.gritter-with-image {
    width: 220px;
    float: right;
    padding-left: 10px;
}

/* for the light (white) version of the gritter notice */
.gritter-light .gritter-item {
    background: #fff;
    background: rgba(255, 255, 255, 0.75);
    color: #666;
}

