.toast-container {
    width: 320px;
    z-index: 9999;
}


* html .toast-container {
    position: absolute;
}

.toast-item-error {
    height: auto;
    background: #f2941c;
    opacity: 0.96;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 10px;
    padding-right: 10px;
    font-family: lucida Grande;
    font-size: 14px;
    border: 4px solid #fef5ec;    
    display: block;
    position: relative;
    margin: 0 0 12px 0;
    -moz-box-shadow: 3px 3px 10px #444;
    -webkit-box-shadow: 3px 3px 10px #444;
    box-shadow: 3px 3px 10px #444;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=135, Color='#444444')";
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#444444');
}

.toast-item-error p .msg, .toast-item p .msg {
    margin-bottom: 20px;
}

.toast-item-error p>em, .toast-item p>em {
    color: #6e6e6e;
    font-weight: normal;
    font-style: normal;
    font-size: 10px;
} 

.toast-item-error p>em {
    color: #fff;
}

.toast-item-error p {
    color: #fff;
}

.toast-item p {
    color: #ee6a1f;
}

.toast-item-error a, .toast-item a {
    color: #6e6e6e;
    font-weight: bold;
    text-decoration: none;
} 

.toast-item-error a {
    color: #fff;
}

.toast-item-error a:hover, .toast-item a:hover {
    text-decoration: underline;
}

.toast-item {
    height: auto;
    /*background: #777779;*/
    background: #ececee;
    /*opacity: 0.9;*/
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    /*color: #777779;*/
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
    font-family: lucida Grande;
    font-size: 14px;
    border: 4px solid #777779;
    display: block;
    position: relative;
    margin: 0 0 12px 0;
    border: 4px solid #ffffff;
    -moz-box-shadow: 3px 3px 10px #444;
    -webkit-box-shadow: 3px 3px 10px #444;
    box-shadow: 3px 3px 10px #444;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=10, Direction=135, Color='#444444')";
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#444444');
}

.toast-item p, .toast-item-error p {
    text-align: left;
    margin-left: 50px;
}

.toast-item p>h1, .toast-item-error p>h1 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}

.toast-item .toast-item-close, .toast-item-error .toast-item-close {
    background:url(../images/close-icon-gris.png) no-repeat;
    width:22px;
    height:22px;
    position: absolute;
    top:7px;
    right:7px;
}

.toast-item-image {
    width:32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    left: 10px;
}

.toast-item-image-notice {
    background:url(../images/notice.png);
}

.toast-item-image-success {
    background:url(../images/success.png);
}

.toast-item-image-warning {
    background:url(../images/warning.png);
}

.toast-item-image-error {
    background:url(../images/error.png);
}


/**
 * toast types
 *
 * pattern: toast-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */
.toast-type-notice {
    color: white;
}

.toast-type-success {
    color: white;
}

.toast-type-warning {
    color: white;
    /*border-color: #FCBD57;*/
}

.toast-type-error {
    color: white;
    /*border-color: #B32B2B;*/
}

/**
 * positions
 *
 * pattern: toast-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.toast-position-top-left {
    position: fixed;
    left: 20px;
    top: 20px;
}

.toast-position-top-center {
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: -140px;
}

.toast-position-top-right {
    position: fixed;
    top: 20px;
    right: 20px;
}

.toast-position-middle-left {
    position: fixed;
    left: 20px;
    top: 50%;
    margin-top: -40px;
}

.toast-position-middle-center {
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}

.toast-position-middle-right {
    position: fixed;
    right: 20px;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
}
