/* alert div */
#widgetAlert_alert_div {
    outline: 0;
}

/* opaque div */
#widgetAlert_modal_div{
    position:         absolute;
    opacity:          0.64;
    
    /* IE 8 */
    -ms-filter:       "progid:DXImageTransform.Microsoft.Alpha(Opacity=64)";
    
    /* IE 7 */
    filter:           alpha(opacity=64);
    top:              0px;
    bottom:           0px;
    background-color: black;
    width:            100%;
    
    z-index : 10000;
}

.widgetAlert_alert {
    visibility:visible;
    position:absolute;
    margin-top:0px;
    margin-bottom:0px;
    margin-left:auto;
    margin-right:auto;
    padding:5px;
    overflow:visible;
    visibility:visible;
    z-index : 10001;
    min-width: 296px !important;
    left: 50% !important;
    transform: translateX(-50%);
}

.widgetAlert_legend {
    color:#363535;
    font-weight: 700;
    display:inline-block;
    position: relative;
    white-space: nowrap;
    padding-left: 30px;
    padding-right: 24px;
    border-radius: 0;
    border: 0;
    top: 0;
    left: 0;
    font-size: 18px;
    padding-top: 0;
    line-height: 24px;
    background: transparent;
    border: 0;
}

.widgetAlert_legend::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("/system/images/alert_icon.svg");
    background-repeat: no-repeat;
    content: "";
}

.widgetAlert_fieldset {
    border: 0;
    padding: 16px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0px 3px 6px rgba(54, 53, 53, 0.16), 0px 3px 6px rgba(54, 53, 53, 0.23);
    border-radius: 4px;
}

.widgetAlert_text_area_table {
    width:100%;
    margin-bottom: 10px;
    margin-top: 1px;
}

.widgetAlert_text {
    line-height: 14px;
    font-weight: 400;
    text-align: left;
    color: #363535;
    padding: 0;
}

.widgetAlert_info .widgetAlert_fieldset{
    background-color: #F0F0F0;
	box-shadow: 0px 3px 6px rgba(54, 53, 53, 0.16), 0px 3px 6px rgba(54, 53, 53, 0.23);	
}
.widgetAlert_info .widgetAlert_legend:before{
    width: 24px;
    background-image: url("/system/images/information_icon.svg");
    height: 24px;
    top: 0px;
}

.widgetAlert_success .widgetAlert_fieldset{
    background-color: #AFF0E1;
	box-shadow: 0px 3px 6px rgba(54, 53, 53, 0.16), 0px 3px 6px rgba(54, 53, 53, 0.23);	
}
.widgetAlert_success .widgetAlert_legend:before{
    width: 24px;
    background-image: url("/system/images/alert_icon.svg");
    height: 24px;
    top: 0px;
}

.widgetAlert_danger .widgetAlert_fieldset {
    background-color: #FFACA7;
    box-shadow: 0px 3px 6px rgba(54, 53, 53, 0.16), 0px 3px 6px rgba(54, 53, 53, 0.23);	
}
.widgetAlert_danger .widgetAlert_legend:before{
    width: 24px;
    background-image: url("/system/images/danger_icon.svg");
    height: 24px;
    top: 0px;
}

.widgetAlert_warning .widgetAlert_fieldset{
    background-color: #FFD895;
    box-shadow: 0px 3px 6px rgba(54, 53, 53, 0.16), 0px 3px 6px rgba(54, 53, 53, 0.23);	
}
.widgetAlert_warning .widgetAlert_legend:before{
    width: 24px;
    background-image: url("/system/images/warning_icon.svg");
    height: 24px;
    top: 0px;
}

