@charset "UTF-8";
/* Palette generated by Material Palette - materialpalette.com/blue/teal */
/* Palette generated by Material Palette - materialpalette.com/blue/teal */
@import "../fonts/quicksand/font.css";
@import "../fonts/iconfont/material-icons.css";
.xAlertContainer {
    position: fixed;
    top: 68px;
    right: 20px;
    z-index: 1000;
}

.xAlert {
    text-align: left;
    padding: 21px 0;
    background-color: #fff;
    border-radius: 4px;
    max-width: 500px;
    top: 0px;
    position: relative;
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}
.xAlert:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.xAlert.success:before {
    background-color: #2BDE3F;
}
.xAlert.success .content b {
    color: #27AE60;
}
.xAlert.success .icon {
    background-color: #2BDE3F;
}
.xAlert.info .content b {
    color: #1A73E8;
}
.xAlert.info .icon {
    background-color: #1A73E8;
    font-style: italic;
    font-family: "Times New Roman", arial;
    font-weight: 600;
}
.xAlert.info:before {
    background-color: #1A73E8;
}
.xAlert.warning .content b {
    color: orange;
}
.xAlert.warning .icon {
    background-color: orange;
}
.xAlert.warning:before {
    background-color: orange;
}
.xAlert.error .content b {
    color: red;
}
.xAlert.error .icon {
    background-color: red;
}
.xAlert.error:before {
    background-color: red;
}
.xAlert .icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    color: #FFF;
    padding: 7px;
    border-radius: 50%;
    font-size: 1.2rem;
}
.xAlert .content {
    padding-left: 70px;
    padding-right: 60px;
}
.xAlert .content b {
    display: block;
    color: #3e3e3e;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}
.xAlert .content p {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: #878787;
}
.xAlert .xClose {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 14px;
    cursor: pointer;
    height: 14px;
    color: #999;
    transform: translateY(-50%);
}